Преглед изворни кода

Add a missing closing parenthesis in a dpkg string (Jordi Mallach).

Guillem Jover пре 20 година
родитељ
комит
738d611820
3 измењених фајлова са 8 додато и 2 уклоњено
  1. 5 0
      ChangeLog
  2. 2 1
      debian/changelog
  3. 1 1
      src/processarc.c

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2006-02-13  Jordi Mallach  <jordi@debian.org>
+
+	* src/processarc.c (process_archive): Add missing closing parenthesis
+	in a string.
+
 2006-02-12  Frank Lichtenheld  <djpig@debian.org>
 
 	* configure.ac: Bump version to 1.13.15~

+ 2 - 1
debian/changelog

@@ -1,6 +1,7 @@
 dpkg (1.13.15~) UNRELEASED; urgency=low
 
-  * 
+  [ Guillem Jover ]
+  * Add a missing closing parenthesis in a dpkg string (Jordi Mallach).
 
  -- Frank Lichtenheld <djpig@debian.org>  Sun, 12 Feb 2006 02:44:24 +0100
 

+ 1 - 1
src/processarc.c

@@ -662,7 +662,7 @@ void process_archive(const char *filename) {
 	    oldfs.st_ino == cfile->namenode->filestat->st_ino) {
 	  if (sameas)
 	    fprintf(stderr, _("dpkg: warning - old file `%.250s' is the same"
-		      " as several new files!  (both `%.250s' and `%.250s'"),
+		      " as several new files!  (both `%.250s' and `%.250s')"),
 		    fnamevb.buf,
 		    sameas->namenode->name, cfile->namenode->name);
 	  sameas= cfile;