summaryrefslogtreecommitdiff
path: root/source3/libsmb/clifile.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-06-21 17:23:20 +0000
committerJeremy Allison <jra@samba.org>2002-06-21 17:23:20 +0000
commit904533dc9e1948adcd4df5f2a771d20bedb0f520 (patch)
tree77d918a6624e215a5a33cc9b92fb27fabbd04907 /source3/libsmb/clifile.c
parent8c5ab0498b5d9e4df858f2283fd26912ab54a60a (diff)
downloadsamba-904533dc9e1948adcd4df5f2a771d20bedb0f520.tar.gz
samba-904533dc9e1948adcd4df5f2a771d20bedb0f520.tar.bz2
samba-904533dc9e1948adcd4df5f2a771d20bedb0f520.zip
Don't use uint. It doesn't exist on some platforms and we don't define it.
Replaced with "unsigned int". Jeremy. (This used to be commit 5841ca54b6a8c36f3d76c12570ff8f2211ed2363)
Diffstat (limited to 'source3/libsmb/clifile.c')
-rw-r--r--source3/libsmb/clifile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c
index 05843ac5de..a47c956a55 100644
--- a/source3/libsmb/clifile.c
+++ b/source3/libsmb/clifile.c
@@ -76,7 +76,7 @@ static BOOL cli_link_internal(struct cli_state *cli, const char *fname_src, cons
uint32 unix_perms_to_wire(mode_t perms)
{
- uint ret = 0;
+ unsigned int ret = 0;
ret |= ((perms & S_IXOTH) ? UNIX_X_OTH : 0);
ret |= ((perms & S_IWOTH) ? UNIX_W_OTH : 0);