~ken-vandine/ubuntu/natty/nfs-utils/1.2.2-4ubuntu1

« back to all changes in this revision

Viewing changes to utils/exportfs/exportfs.c

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2007-01-05 13:38:07 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20070105133807-0nvljb85umz1gfwu
Tags: 1:1.0.11~git-20060105-2
08-dont-build-getkversion.patch: We missed tools/Makefile.in on last
refresh, so it ended up in the .diff.gz. Fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
412
412
                                c = dumpopt(c, "mapping=ugidd");
413
413
                        else if (ep->e_maptype == CLE_MAP_FILE)
414
414
                                c = dumpopt(c, "mapping=file");
415
 
                        if (ep->e_anonuid != -2)
 
415
                        if (ep->e_anonuid != 65534)
416
416
                                c = dumpopt(c, "anonuid=%d", ep->e_anonuid);
417
 
                        if (ep->e_anongid != -2)
 
417
                        if (ep->e_anongid != 65534)
418
418
                                c = dumpopt(c, "anongid=%d", ep->e_anongid);
419
419
 
420
420
                        printf("%c\n", (c != '(')? ')' : ' ');