]> err.no Git - dpkg/commitdiff
Revert last modification. It'll be fixed properly for dpkg 1.11.
authorAdam Heath <doogie@debian.org>
Sun, 2 Jun 2002 04:26:46 +0000 (04:26 +0000)
committerAdam Heath <doogie@debian.org>
Sun, 2 Jun 2002 04:26:46 +0000 (04:26 +0000)
ChangeLog
dpkg-deb/main.c
dselect/main.cc
main/main.c
main/query.c
split/main.c

index da766c79eb0071693367049390ac5e6f7bed2897..8cd6bdb239038bfe9f65734accd6c9e8303b5f77 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Jun  1 23:22:19 CDT 2002 Adam Heath <doogie@debian.org>
+
+  * dpkg-deb/main.c, main/main.c, main/query.c, dselect/main.cc,
+    split/main.c: Revert last modification.  It'll be fixed properly for
+    dpkg 1.11.
+
 Sat Jun  1 16:45:13 CDT 2002 Adam Heath <doogie@debian.org>
 
   * dpkg-deb/main.c, main/main.c, main/query.c, dselect/main.cc,
index 030974c24b7ea3a6cdb9df933643ac41a755becd..54b10618d89973395a04678cc707f191f9f72fc6 100644 (file)
 const char* showformat = "${pkg:Package}\t${pkg:Version}\n";
 
 static void printversion(void) {
-  if (printf(_("Debian `%s' package archive backend version %s."), BACKEND, DPKG_VERSION_ARCH) < 0) werr("stdout");
-  if (printf(_("This is free software; see the GNU General Public Licence version 2 or\n"
-             "later for copying conditions. There is NO warranty.\n"
-             "See %s --licence for copyright and license details.\n"),
-           BACKEND) < 0) werr("stdout");
-  if (fflush(stdout) < 0) werr("stdout");
+  if (fputs(_("Debian `"), stdout) < 0) werr("stdout");
+  if (fputs(BACKEND, stdout) < 0) werr("stdout");
+  if (fputs(_("' package archive backend version "), stdout) < 0) werr("stdout");
+  if (fputs(DPKG_VERSION_ARCH ".\n", stdout) < 0) werr("stdout");
+  if (fputs(_("This is free software; see the GNU General Public Licence version 2 or\n"
+             "later for copying conditions. There is NO warranty.\n"
+             "See dpkg-deb --licence for details.\n"),
+           stdout) < 0) werr("stdout");
 }
 
 static void usage(void) {
index 492d2bed71e0473971ad8ee9b96546ff0cbe0e2a..831bfef91d434928fceea80623b844dfeda99eca 100644 (file)
@@ -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"
-      "%s --licence for copyright and license details.\n");
+      "dselect --licence for 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, DSELECT) == EOF) werr("stdout");
+  if (fprintf(stdout,gettext(copyrightstring), DPKG_VERSION_ARCH) == EOF) werr("stdout");
 }
 
 static void usage(void) {
index f7ef3a3ce5c4b51c62c3a4e670d746c81f6b5e91..407702b945f0bbda540e6b46a14d91607ad08207 100644 (file)
 #include "main.h"
 
 static void printversion(void) {
-  if (printf(_("Debian `%s' package management program version %s."), DPKG, DPKG_VERSION_ARCH) < 0) werr("stdout");
-  if (printf(_("This is free software; see the GNU General Public Licence version 2 or\n"
-             "later for copying conditions. There is NO warranty.\n"
-             "See %s --licence for copyright and license details.\n"),
-           DPKG) < 0) werr("stdout");
-  if (fflush(stdout) < 0) werr("stdout");
+  if (fputs(_("Debian GNU/Linux `"), stdout) < 0) werr("stdout");
+  if (fputs(DPKG, stdout) < 0) werr("stdout");
+  if (fputs(_("' package management program version "), stdout) < 0) werr("stdout");
+  if (fputs( DPKG_VERSION_ARCH ".\n", stdout) < 0) werr("stdout");
+  if (fputs(_( "This is free software; see the GNU General Public Licence version 2 or\n"
+               "later for copying conditions.  There is NO warranty.\n"
+               "See " DPKG " --licence for copyright and license details.\n"),
+                stdout) < 0) werr("stdout");
 }
 /*
    options that need fixing:
index 320fe76954fd29e5d4d15b9e99954213ed9560f0..9b8c69cb47b3d3f4bd76559ed4f3aef255c8eefc 100644 (file)
@@ -38,7 +38,6 @@
 #include <config.h>
 #include <dpkg.h>
 #include <dpkg-db.h>
-#include <version.h>
 #include <myopt.h>
 
 #include "filesdb.h"
@@ -428,12 +427,14 @@ void showpackages(const char *const *argv) {
 }
 
 static void printversion(void) {
-  if (printf(_("Debian `%s' package  management program query tool version %s."), DPKGQUERY, DPKG_VERSION_ARCH) < 0) werr("stdout");
-  if (printf(_("This is free software; see the GNU General Public Licence version 2 or\n"
-             "later for copying conditions. There is NO warranty.\n"
-             "See %s --licence for copyright and license details.\n"),
-           DPKGQUERY) < 0) werr("stdout");
-  if (fflush(stdout) < 0) werr("stdout");
+  if (fputs(_("Debian `"), stdout) < 0) werr("stdout");
+  if (fputs(DPKGQUERY, stdout) < 0) werr("stdout");
+  if (fputs(_("' package management program query tool\n"), stdout) < 0)
+    werr("stdout");
+  if (fputs(_( "This is free software; see the GNU General Public Licence version 2 or\n"
+               "later for copying conditions.  There is NO warranty.\n"
+               "See " DPKGQUERY " --licence for copyright and license details.\n"),
+                stdout) < 0) werr("stdout");
 }
 /*
    options that need fixing:
index df447c55c46c9e7d2707da28e8de19ae3ee82f1a..0f9d77b0ef51811b87fb47add27d9e8b7afb6606 100644 (file)
 #include "dpkg-split.h"
 
 static void printversion(void) {
-  if (printf(_("Debian `%s' package split/join tool; version %s."), SPLITTER, DPKG_VERSION_ARCH) < 0) werr("stdout");
-  if (printf(_("This is free software; see the GNU General Public Licence version 2 or\n"
-             "later for copying conditions. There is NO warranty.\n"
-             "See %s --licence for copyright and license details.\n"),
-           SPLITTER) < 0) werr("stdout");
-  if (fflush(stdout) < 0) werr("stdout");
+  if (fputs
+      (_("Debian GNU/Linux `dpkg-split' package split/join tool; version "), stdout) < 0) werr ("stdout");
+  if (fputs (DPKG_VERSION_ARCH ".\n", stdout) < 0) werr ("stdout");
+  if (fputs (_("Copyright (C) 1994-1996 Ian Jackson.  This is free software; see the\n"
+       "GNU General Public Licence version 2 or later for copying conditions.\n"
+       "There is NO warranty.  See dpkg-split --licence for details.\n"),
+       stdout) < 0) werr("stdout");
 }
 
 static void usage(void) {