On Windows, use 65534/65534 instead of 65535/65535 for the default uid/gid
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Fri, 31 May 2013 00:58:29 +0000 (17:58 -0700)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Fri, 31 May 2013 00:58:29 +0000 (17:58 -0700)
lib/libnfs-zdr.c

index 5d98706dd79c4533634272ee46681608d2db5568..5f7964837a510fffea8f3cc9b0623c8244b8b024 100644 (file)
@@ -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", 65535, 65535, 0, NULL);
+       return libnfs_authunix_create("libnfs", 65534, 65534, 0, NULL);
 #else
        return libnfs_authunix_create("libnfs", getuid(), getgid(), 0, NULL);
 #endif