diff options
author | Michael Adam <obnox@samba.org> | 2012-06-06 15:28:14 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-06 19:37:14 +0200 |
commit | 43890972945f19fdf0f009eec03e7d493b2760e9 (patch) | |
tree | 5183356d3a455bab73639e09d8d0dfd7296f2bfe /source3/include | |
parent | 86f621488aae89856a9c6ae5a91ae5bf96302659 (diff) | |
download | samba-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')
-rw-r--r-- | source3/include/vfs.h | 2 |
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; |