diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-22 12:22:06 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-22 12:22:06 +0000 |
commit | 7e110f782a55d4dca1fb3fedd95bf059c9ec0638 (patch) | |
tree | 2e27934bd9c23ed79a80d9ea4a02396cd0516b3c /source3/smbd/dosmode.c | |
parent | 0dde23a7b24edf1cbf4d7d7e5afea485e37498e5 (diff) | |
download | samba-7e110f782a55d4dca1fb3fedd95bf059c9ec0638.tar.gz samba-7e110f782a55d4dca1fb3fedd95bf059c9ec0638.tar.bz2 samba-7e110f782a55d4dca1fb3fedd95bf059c9ec0638.zip |
More signed/unsigned fixes (yes, I run with funny compiler options) and
make x_fwrite() match fwrite() in returning a size_t.
Andrew Bartlett
(This used to be commit 2943c695787b742e9a96b2eefe2d75f681bacf7c)
Diffstat (limited to 'source3/smbd/dosmode.c')
-rw-r--r-- | source3/smbd/dosmode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 77d8c9cc92..6c21dc04d0 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -181,7 +181,7 @@ uint32 dos_mode(connection_struct *conn,char *path,SMB_STRUCT_STAT *sbuf) /******************************************************************* chmod a file - but preserve some bits ********************************************************************/ -int file_chmod(connection_struct *conn,char *fname,int dosmode,SMB_STRUCT_STAT *st) +int file_chmod(connection_struct *conn,char *fname, uint32 dosmode,SMB_STRUCT_STAT *st) { SMB_STRUCT_STAT st1; int mask=0; |