From: Guillem Jover Date: Mon, 15 Jan 2007 09:11:36 +0000 (+0000) Subject: Add a missing newline to a warning message in dpkg. Closes: #390914 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=959255c8fc1814f7c9b9a06f6c666262796da71c;p=dpkg Add a missing newline to a warning message in dpkg. Closes: #390914 Thanks to Ian Jackson. --- diff --git a/ChangeLog b/ChangeLog index bf3f11ff..40534524 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-15 Ian Jackson + + * src/processarc.c (process_archive): Add a missing newline to a + warning message. + 2007-01-15 Guillem Jover * scripts/dpkg-gettext.pl: Remove duplicate 'use static'. diff --git a/debian/changelog b/debian/changelog index d3e7aaac..9d770b13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,8 @@ dpkg (1.14.0) UNRELEASED; urgency=low by checking if the macro value is true instead of it being defined. Thanks to Mark Rosenstand. * Make some perl scripts use static and warnings, to ease catching errors. + * Add a missing newline to a warning message in dpkg. Closes: #390914 + Thanks to Ian Jackson. [ Updated dpkg translations ] * Romanian (Eddy Petrișor). diff --git a/src/processarc.c b/src/processarc.c index 537a0ecd..c22f623e 100644 --- a/src/processarc.c +++ b/src/processarc.c @@ -672,7 +672,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')\n"), fnamevb.buf, sameas->namenode->name, cfile->namenode->name); sameas= cfile;