summaryrefslogtreecommitdiff
path: root/source3/include/msdfs.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-12-13 09:52:31 -0800
committerRalph Boehme <slow@samba.org>2019-12-16 14:05:33 +0000
commitcc1ec0a9f135ec32c05ae04d0b3bd47fdef5d47d (patch)
tree59a154ac3f5d6cc768f5905a80fccbad9f39758f /source3/include/msdfs.h
parent2048ff3adc4dbff659dfb5d747f0cb93baad06ee (diff)
downloadsamba-cc1ec0a9f135ec32c05ae04d0b3bd47fdef5d47d.tar.gz
s3: smbd: cleanup. Change 'int referral_count' -> 'size_t referral_count' in struct junction_map.
This is a non-negative count. Fix remaing code to not mix int and size_t. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/include/msdfs.h')
-rw-r--r--source3/include/msdfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h
index 333a84082d6..6a851cb3330 100644
--- a/source3/include/msdfs.h
+++ b/source3/include/msdfs.h
@@ -53,7 +53,7 @@ struct junction_map {
char *service_name;
char *volume_name;
const char *comment;
- int referral_count;
+ size_t referral_count;
struct referral* referral_list;
};