From: Pádraig Brady Date: Sun, 29 Aug 2021 20:05:53 +0000 (+0100) Subject: doc: indicate the default algorithm in the sum(1) man page X-Git-Tag: v9.0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=669d45de0f43861c3e690c82f0e6abd9174e2388;p=thirdparty%2Fcoreutils.git doc: indicate the default algorithm in the sum(1) man page * src/sum.c (usage): Indicate that -r (BSD algorithm) is the default. --- diff --git a/src/sum.c b/src/sum.c index 018623d478..c66147edc3 100644 --- a/src/sum.c +++ b/src/sum.c @@ -68,7 +68,7 @@ Print checksum and block counts for each FILE.\n\ fputs (_("\ \n\ - -r use BSD sum algorithm, use 1K blocks\n\ + -r use BSD sum algorithm (the default), use 1K blocks\n\ -s, --sysv use System V sum algorithm, use 512 bytes blocks\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout);