diff options
Diffstat (limited to 'src/md5sum.c')
-rw-r--r-- | src/md5sum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/md5sum.c b/src/md5sum.c index 62d52ef44..570dde9f1 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -34,7 +34,7 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME (algorithm == ALG_MD5 ? "md5sum" : "shasum") -#define WRITTEN_BY _("Written by Ulrich Drepper and Scott Miller.") +#define AUTHORS "Ulrich Drepper", "Scott Miller" /* Most systems do not distinguish between external and internal text representations. */ @@ -602,7 +602,7 @@ main (int argc, char **argv) warn = 1; break; case_GETOPT_HELP_CHAR; - case_GETOPT_VERSION_CHAR (PROGRAM_NAME, WRITTEN_BY); + case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS); default: usage (EXIT_FAILURE); } |