diff options
author | Richard Sharpe <rsharpe@samba.org> | 2015-04-30 19:22:21 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2015-05-01 19:15:10 +0200 |
commit | e049943eba470918d188ca7b959e36bfc2d746b1 (patch) | |
tree | 3ddadf6c52a7a6107041a534595296aa8ec78cf9 /source3/include/msdfs.h | |
parent | b79aed8592fa2a388f63098406c1f1b88d1da7eb (diff) | |
download | samba-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.h | 8 |
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 { |