diff options
author | Jim Meyering <jim@meyering.net> | 2000-09-21 05:40:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-09-21 05:40:28 +0000 |
commit | 7708d86636fb7fe18aa0946ff995ae25dfbba0cc (patch) | |
tree | d9396edf1079e188ab20234e327c76b9e7df8ed0 /lib | |
parent | ff8d7f3d98a521a4600ec6ffaa0feb3871b4f6d4 (diff) | |
download | coreutils-7708d86636fb7fe18aa0946ff995ae25dfbba0cc.tar.xz |
(parse_user_spec): Remove debugging printf I'd added.
Argh!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/userspec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/userspec.c b/lib/userspec.c index 67bde6574..27b687d43 100644 --- a/lib/userspec.c +++ b/lib/userspec.c @@ -261,7 +261,6 @@ parse_user_spec (const char *spec_arg, uid_t *uid, gid_t *gid, if (xstrtoul (u, NULL, 0, &tmp_long, NULL) != LONGINT_OK || tmp_long > MAXUID) return _(E_invalid_user); - printf ("MAXUID: %u\n", (uid_t) MAXUID); *uid = tmp_long; } } |