From: Jim Meyering Date: Mon, 1 Jul 1996 03:48:10 +0000 (+0000) Subject: (main): Remove now-unnecessary diagnostic about filename containing NEWLINE. X-Git-Tag: FILEUTILS-3_12o~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2b4bca42e4ede9c9e00a4bdf5cf82b4a072df5d;p=thirdparty%2Fcoreutils.git (main): Remove now-unnecessary diagnostic about filename containing NEWLINE. --- diff --git a/src/md5sum.c b/src/md5sum.c index 9ebe04c3fc..a9ecca8405 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -520,13 +520,6 @@ main (int argc, char **argv) { size_t filename_len; - if (strchr (file, '\n')) - error (0, 0, - _("\ -warning: filename contains a NEWLINE character `%s'; \ -you will not be able to verify this checksum using `md5sum --check'"), - file); - for (i = 0; i < 16; ++i) printf ("%02x", md5buffer[i]);