From: Jim Meyering Date: Fri, 14 May 1999 17:11:03 +0000 (+0000) Subject: (version_etc): Put version info and author names X-Git-Tag: TEXTUTILS-1_22l~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d97b1c61b80132b0c6acd6d2d3130b6d74a94d2;p=thirdparty%2Fcoreutils.git (version_etc): Put version info and author names on the first two lines respectively rather than putting the three lines of copyright info between them. --- diff --git a/lib/version-etc.c b/lib/version-etc.c index 68275b3662..e25aedc3f8 100644 --- a/lib/version-etc.c +++ b/lib/version-etc.c @@ -35,13 +35,12 @@ version_etc (FILE *stream, const char *version, const char *authors) { fprintf (stream, "%s (%s) %s\n", command_name, package, version); + fprintf (stream, _("Written by %s.\n"), authors); fputs (_("\ \n\ Copyright (C) 1999 Free Software Foundation, Inc.\n\ This is free software; see the source for copying conditions. There is NO\n\ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ -\n\ " ), stream); - fprintf (stream, _("Written by %s.\n"), authors); }