diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2014-05-20 22:01:15 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2014-05-20 22:01:15 +0200 |
commit | f287ff471c7e08c3e94ad915540468f1b480c55d (patch) | |
tree | 6d634f86c81631b709f8a4b9bc2f1baafdc1279a /fetchmail.h | |
parent | a00631910a613139423a9e1b59dd194a1b4b63af (diff) | |
download | fetchmail-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.h | 7 |
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(); |