diff options
author | Guillem Jover <guillem@debian.org> | 2016-04-03 17:05:47 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2016-05-02 03:35:44 +0200 |
commit | 829326ae59424d98ce3e12d9360dfb572ac43f0e (patch) | |
tree | 66d8faa44205118040cffaf409193d8a0c8f287d /dpkg-deb/info.c | |
parent | db8d2e8a85fe0623edea396a76b5ab3cd8542e1b (diff) | |
download | dpkg-829326ae59424d98ce3e12d9360dfb572ac43f0e.tar.gz |
dpkg-deb: Promote a print to a warning for missing control files
Diffstat (limited to 'dpkg-deb/info.c')
-rw-r--r-- | dpkg-deb/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpkg-deb/info.c b/dpkg-deb/info.c index e806c3175..07caecfd5 100644 --- a/dpkg-deb/info.c +++ b/dpkg-deb/info.c @@ -175,7 +175,7 @@ info_list(const char *debar, const char *dir) if (!cc) { if (errno != ENOENT) ohshite(_("failed to read '%.255s' (in '%.255s')"), CONTROLFILE, dir); - fputs(_("(no 'control' file in control archive!)\n"), stdout); + warning(_("no 'control' file in control archive!")); } else { lines= 1; while ((c= getc(cc))!= EOF) { |