diff options
author | Adam Heath <doogie@debian.org> | 2002-06-01 21:50:08 +0000 |
---|---|---|
committer | Adam Heath <doogie@debian.org> | 2002-06-01 21:50:08 +0000 |
commit | f9e519d4c7dbca1c5dad587c950373ac71d1a0c5 (patch) | |
tree | e04b3e2b44e1164f55b579c153b74acf3ff5de41 /dselect | |
parent | b5468b8ee208f8ac5fd08aceeedb683131c66ec9 (diff) | |
download | dpkg-f9e519d4c7dbca1c5dad587c950373ac71d1a0c5.tar.gz |
Fixed printversion(), to allow translations to be done better.
Diffstat (limited to 'dselect')
-rw-r--r-- | dselect/main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dselect/main.cc b/dselect/main.cc index 831bfef91..492d2bed7 100644 --- a/dselect/main.cc +++ b/dselect/main.cc @@ -154,12 +154,12 @@ static const char copyrightstring[]= N_( "Copyright (C) 2000,2001 Wichert Akkerman.\n" "This is free software; see the GNU General Public Licence version 2\n" "or later for copying conditions. There is NO warranty. See\n" - "dselect --licence for details.\n"); + "%s --licence for copyright and license details.\n"); static void printversion(void) { if (fprintf(stdout,gettext(programdesc),DSELECT) == EOF) werr("stdout"); if (fprintf(stdout,"\n") == EOF) werr("stdout"); - if (fprintf(stdout,gettext(copyrightstring), DPKG_VERSION_ARCH) == EOF) werr("stdout"); + if (fprintf(stdout,gettext(copyrightstring), DPKG_VERSION_ARCH, DSELECT) == EOF) werr("stdout"); } static void usage(void) { |