summaryrefslogtreecommitdiff
path: root/src/md5sum.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-01 03:48:10 +0000
committerJim Meyering <jim@meyering.net>1996-07-01 03:48:10 +0000
commitd2b4bca42e4ede9c9e00a4bdf5cf82b4a072df5d (patch)
tree59f9d8ccc4d3869975ad157fc1ab7c17e358fb3f /src/md5sum.c
parent6dceaa1d9d5cfa8ae8d2945c084213a321c1c322 (diff)
downloadcoreutils-d2b4bca42e4ede9c9e00a4bdf5cf82b4a072df5d.tar.xz
(main): Remove now-unnecessary diagnostic about filename containing NEWLINE.
Diffstat (limited to 'src/md5sum.c')
-rw-r--r--src/md5sum.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/md5sum.c b/src/md5sum.c
index 9ebe04c3f..a9ecca840 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]);