repositories
/
deb_libnfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5e346e
)
On Windows, use 65534/65534 instead of 65535/65535 for the default uid/gid
author
Ronnie Sahlberg
<ronniesahlberg@gmail.com>
Fri, 31 May 2013 00:58:29 +0000
(17:58 -0700)
committer
Ronnie Sahlberg
<ronniesahlberg@gmail.com>
Fri, 31 May 2013 00:58:29 +0000
(17:58 -0700)
lib/libnfs-zdr.c
patch
|
blob
|
blame
|
history
diff --git
a/lib/libnfs-zdr.c
b/lib/libnfs-zdr.c
index 5d98706dd79c4533634272ee46681608d2db5568..5f7964837a510fffea8f3cc9b0623c8244b8b024 100644
(file)
--- a/
lib/libnfs-zdr.c
+++ b/
lib/libnfs-zdr.c
@@
-506,7
+506,7
@@
struct AUTH *libnfs_authunix_create(char *host, uint32_t uid, uint32_t gid, uint
struct AUTH *libnfs_authunix_create_default(void)
{
#ifdef WIN32
- return libnfs_authunix_create("libnfs", 6553
5, 65535
, 0, NULL);
+ return libnfs_authunix_create("libnfs", 6553
4, 65534
, 0, NULL);
#else
return libnfs_authunix_create("libnfs", getuid(), getgid(), 0, NULL);
#endif