|
|
d3767b |
From ef6be60dcaf424bdb21392aff42331bd4dc272e0 Mon Sep 17 00:00:00 2001
|
|
|
d3767b |
From: Kamil Dudka <kdudka@redhat.com>
|
|
|
d3767b |
Date: Thu, 14 Mar 2019 13:48:01 +0100
|
|
|
d3767b |
Subject: [PATCH] md5sum,b2sum,sha*sum: --help: add note about binary/text mode
|
|
|
d3767b |
|
|
|
d3767b |
* src/md5sum.c (usage): Make it clear that there is no difference
|
|
|
d3767b |
between binary mode and text mode on GNU systems.
|
|
|
d3767b |
|
|
|
d3767b |
Bug: https://bugzilla.redhat.com/406981
|
|
|
d3767b |
Bug: https://bugzilla.redhat.com/1688740
|
|
|
d3767b |
|
|
|
d3767b |
Upstream-commit: ae61b1066351bb784b54fbfd7b52caf129ec286c
|
|
|
d3767b |
Signed-off-by: Kamil Dudka <kdudka@redhat.com>
|
|
|
d3767b |
---
|
|
|
d3767b |
src/md5sum.c | 5 ++++-
|
|
|
d3767b |
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
d3767b |
|
|
|
d3767b |
diff --git a/src/md5sum.c b/src/md5sum.c
|
|
|
d3767b |
index 3532f7b7a..f75b6de02 100644
|
|
|
d3767b |
--- a/src/md5sum.c
|
|
|
d3767b |
+++ b/src/md5sum.c
|
|
|
d3767b |
@@ -287,7 +287,10 @@ The following five options are useful only when verifying checksums:\n\
|
|
|
d3767b |
The sums are computed as described in %s. When checking, the input\n\
|
|
|
d3767b |
should be a former output of this program. The default mode is to print a\n\
|
|
|
d3767b |
line with checksum, a space, a character indicating input mode ('*' for binary,\
|
|
|
d3767b |
-\n' ' for text or where binary is insignificant), and name for each FILE.\n"),
|
|
|
d3767b |
+\n' ' for text or where binary is insignificant), and name for each FILE.\n\
|
|
|
d3767b |
+\n\
|
|
|
d3767b |
+Note: There is no difference between binary mode and text mode on GNU systems.\
|
|
|
d3767b |
+\n"),
|
|
|
d3767b |
DIGEST_REFERENCE);
|
|
|
d3767b |
emit_ancillary_info (PROGRAM_NAME);
|
|
|
d3767b |
}
|
|
|
d3767b |
--
|
|
|
d3767b |
2.17.2
|
|
|
d3767b |
|