From: Jim Meyering Date: Thu, 21 Sep 2000 05:40:28 +0000 (+0000) Subject: (parse_user_spec): Remove debugging printf I'd added. X-Git-Tag: FILEUTILS-4_0_27~27 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=7708d86636fb7fe18aa0946ff995ae25dfbba0cc;p=thirdparty%2Fcoreutils.git (parse_user_spec): Remove debugging printf I'd added. Argh! --- diff --git a/lib/userspec.c b/lib/userspec.c index 67bde6574d..27b687d43e 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; } }