diff options
author | J. Bruce Fields | 2007-07-21 13:37:30 +0200 |
---|---|---|
committer | Linus Torvalds | 2007-07-22 02:49:14 +0200 |
commit | 3e63516c826454c964eefdd24d33e188064c6679 (patch) | |
tree | 3a22bd550f2febb703af566b4c41a952d67aa8fd /fs/nfsd | |
parent | i386: touch_nmi_watchdog() in print_trace_address() (diff) | |
download | kernel-qcow2-linux-3e63516c826454c964eefdd24d33e188064c6679.tar.gz kernel-qcow2-linux-3e63516c826454c964eefdd24d33e188064c6679.tar.xz kernel-qcow2-linux-3e63516c826454c964eefdd24d33e188064c6679.zip |
knfsd: fix typo in export display, print uid and gid as unsigned
For display purposes, treat uid's and gid's as unsigned ints for now.
Also fix a typo.
Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index 6ab8de40904c..2d295dda4c1d 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -1503,9 +1503,9 @@ static void exp_flags(struct seq_file *m, int flag, int fsid, if (flag & NFSEXP_FSID) seq_printf(m, ",fsid=%d", fsid); if (anonu != (uid_t)-2 && anonu != (0x10000-2)) - seq_printf(m, ",sanonuid=%d", anonu); + seq_printf(m, ",anonuid=%u", anonu); if (anong != (gid_t)-2 && anong != (0x10000-2)) - seq_printf(m, ",sanongid=%d", anong); + seq_printf(m, ",anongid=%u", anong); if (fsloc && fsloc->locations_count > 0) { char *loctype = (fsloc->migrated) ? "refer" : "replicas"; int i; |