summaryrefslogtreecommitdiff
path: root/source3/include/vfs.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-06 15:28:14 +0200
committerMichael Adam <obnox@samba.org>2012-06-06 19:37:14 +0200
commit43890972945f19fdf0f009eec03e7d493b2760e9 (patch)
tree5183356d3a455bab73639e09d8d0dfd7296f2bfe /source3/include/vfs.h
parent86f621488aae89856a9c6ae5a91ae5bf96302659 (diff)
downloadsamba-43890972945f19fdf0f009eec03e7d493b2760e9.tar.gz
samba-43890972945f19fdf0f009eec03e7d493b2760e9.tar.bz2
samba-43890972945f19fdf0f009eec03e7d493b2760e9.zip
s3:include: change connection_struct->cnum to uint32_t
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r--source3/include/vfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index fbb236dc27..3062aa13a6 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -280,7 +280,7 @@ struct share_params {
typedef struct connection_struct {
struct connection_struct *next, *prev;
struct smbd_server_connection *sconn; /* can be NULL */
- unsigned cnum; /* an index passed over the wire */
+ uint32_t cnum; /* an index passed over the wire */
struct share_params *params;
bool force_user;
struct vuid_cache vuid_cache;