summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/version-etc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/version-etc.c b/lib/version-etc.c
index 663aa8dcf..37f3e02c3 100644
--- a/lib/version-etc.c
+++ b/lib/version-etc.c
@@ -48,14 +48,13 @@ char* version_etc_copyright =
void
version_etc (FILE *stream,
const char *command_name, const char *package,
- const char *version, const char *authors)
+ const char *version, const char *written_by)
{
if (command_name)
fprintf (stream, "%s (%s) %s\n", command_name, package, version);
else
fprintf (stream, "%s %s\n", package, version);
- fprintf (stream, _("Written by %s.\n"), authors);
- putc ('\n', stream);
+ fprintf (stream, "%s\n\n", written_by);
fputs (version_etc_copyright, stream);
putc ('\n', stream);