]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
One final step in convertion of anon = -2 -> 65534
authorNeil Brown <neilb@suse.de>
Tue, 8 Aug 2006 22:08:10 +0000 (08:08 +1000)
committerNeil Brown <neilb@suse.de>
Tue, 8 Aug 2006 22:08:10 +0000 (08:08 +1000)
Printing export options should avoid printing 'anonuid=65534'
rather than avoiding 'anonuid=-2'.

utils/exportfs/exportfs.c

index c3ba9970dd29bf7001eb5a4cb22bece67e1623e0..cd49a3b21f7f614c677440316586625e37b072d0 100644 (file)
@@ -412,9 +412,9 @@ dump(int verbose)
                                c = dumpopt(c, "mapping=ugidd");
                        else if (ep->e_maptype == CLE_MAP_FILE)
                                c = dumpopt(c, "mapping=file");
                                c = dumpopt(c, "mapping=ugidd");
                        else if (ep->e_maptype == CLE_MAP_FILE)
                                c = dumpopt(c, "mapping=file");
-                       if (ep->e_anonuid != -2)
+                       if (ep->e_anonuid != 65534)
                                c = dumpopt(c, "anonuid=%d", ep->e_anonuid);
                                c = dumpopt(c, "anonuid=%d", ep->e_anonuid);
-                       if (ep->e_anongid != -2)
+                       if (ep->e_anongid != 65534)
                                c = dumpopt(c, "anongid=%d", ep->e_anongid);
 
                        printf("%c\n", (c != '(')? ')' : ' ');
                                c = dumpopt(c, "anongid=%d", ep->e_anongid);
 
                        printf("%c\n", (c != '(')? ')' : ' ');