aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2014-05-20 22:01:15 +0200
committerMatthias Andree <matthias.andree@gmx.de>2014-05-20 22:01:15 +0200
commitf287ff471c7e08c3e94ad915540468f1b480c55d (patch)
tree6d634f86c81631b709f8a4b9bc2f1baafdc1279a /fetchmail.h
parenta00631910a613139423a9e1b59dd194a1b4b63af (diff)
downloadfetchmail-f287ff471c7e08c3e94ad915540468f1b480c55d.tar.gz
fetchmail-f287ff471c7e08c3e94ad915540468f1b480c55d.tar.bz2
fetchmail-f287ff471c7e08c3e94ad915540468f1b480c55d.zip
Do not translate header tags such as "Subject:".
Reported by Gonzalo Pérez de Olaguer Córdoba, Debian Bug#744907.
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 466ed86b..f3e45144 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -593,8 +593,11 @@ void release_sink(struct query *);
int close_sink(struct query *, struct msgblk *, flag);
int open_warning_by_mail(struct query *);
#if defined(HAVE_STDARG_H)
-void stuff_warning(const char *, struct query *, const char *, ... )
- __attribute__ ((format (printf, 3, 4)))
+void stuff_warning(const char *,
+ struct query *,
+ const char *pfx,
+ const char *fmt, ...)
+ __attribute__ ((format (printf, 4, 5)))
;
#else
void stuff_warning();