summaryrefslogtreecommitdiff
path: root/source3/include/msdfs.h
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-04-30 19:22:21 -0700
committerJeremy Allison <jra@samba.org>2015-05-01 19:15:10 +0200
commite049943eba470918d188ca7b959e36bfc2d746b1 (patch)
tree3ddadf6c52a7a6107041a534595296aa8ec78cf9 /source3/include/msdfs.h
parentb79aed8592fa2a388f63098406c1f1b88d1da7eb (diff)
downloadsamba-e049943eba470918d188ca7b959e36bfc2d746b1.tar.gz
Convert three include files from uint32/16/8 to _t types as well as the source that includes them.
The files that include them already seem clean. Signed-off-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/include/msdfs.h')
-rw-r--r--source3/include/msdfs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h
index b3892291272..333a84082d6 100644
--- a/source3/include/msdfs.h
+++ b/source3/include/msdfs.h
@@ -38,15 +38,15 @@
#define MAX_MSDFS_JUNCTIONS 256
struct client_dfs_referral {
- uint32 proximity;
- uint32 ttl;
+ uint32_t proximity;
+ uint32_t ttl;
char *dfspath;
};
struct referral {
char *alternate_path; /* contains the path referred */
- uint32 proximity;
- uint32 ttl; /* how long should client cache referral */
+ uint32_t proximity;
+ uint32_t ttl; /* how long should client cache referral */
};
struct junction_map {