diff options
author | Jim Meyering <jim@meyering.net> | 1999-05-14 17:11:03 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-05-14 17:11:03 +0000 |
commit | 2d97b1c61b80132b0c6acd6d2d3130b6d74a94d2 (patch) | |
tree | db86b71d5f9a80a7d54d9a8cac5467ea365d203b /lib | |
parent | 1fdc84d5a2af75c4fc5ca97b16a71aed1ef6fe9f (diff) | |
download | coreutils-2d97b1c61b80132b0c6acd6d2d3130b6d74a94d2.tar.xz |
(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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/version-etc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/version-etc.c b/lib/version-etc.c index 68275b366..e25aedc3f 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); } |