summaryrefslogtreecommitdiff
path: root/dpkg-deb
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2013-12-14 03:52:20 +0100
committerGuillem Jover <guillem@debian.org>2013-12-17 05:28:46 +0100
commit4ab4758e01571f7dd8a0e6878149783128bb9e2c (patch)
tree4afb3841754bf5f070ccb369220abd78a382fbcd /dpkg-deb
parenta363181bda0e752130176542fb259e5a5bab24d1 (diff)
downloaddpkg-4ab4758e01571f7dd8a0e6878149783128bb9e2c.tar.gz
dpkg-deb, dpkg: Unify and clarify conffile name length error message
Clarify the error message, by stating it's either too long or missing a final newline, and unify it to be the same on both dpkg-deb and dpkg. Closes: #108196
Diffstat (limited to 'dpkg-deb')
-rw-r--r--dpkg-deb/build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpkg-deb/build.c b/dpkg-deb/build.c
index 93ac3940b..e871824b6 100644
--- a/dpkg-deb/build.c
+++ b/dpkg-deb/build.c
@@ -296,7 +296,7 @@ check_conffiles(const char *dir)
ohshite(_("empty string from fgets reading conffiles"));
if (conffilename[n - 1] != '\n')
- ohshit(_("conffile name '%.50s...' is too long, or missing final newline"),
+ ohshit(_("conffile name '%s' is too long, or missing final newline"),
conffilename);
conffilename[n - 1] = '\0';