diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-10-20 13:23:16 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-10-20 13:23:16 +0000 |
commit | 6d1b15c0573a7a1c6590e918447701aab040e6ad (patch) | |
tree | 9d73a5313a0569bb9ceebe43e3cb026e0a4c2543 /fetchmail.h | |
parent | fb4aeab0db01d27d248a79724500879b31b4f26f (diff) | |
download | fetchmail-6d1b15c0573a7a1c6590e918447701aab040e6ad.tar.gz fetchmail-6d1b15c0573a7a1c6590e918447701aab040e6ad.tar.bz2 fetchmail-6d1b15c0573a7a1c6590e918447701aab040e6ad.zip |
Let stuff_warning do the RFC-2047 encoding.
Change stuff_warning interface to take a rfc2047 charset info parameter.
svn path=/trunk/; revision=3968
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h index a42dafa5..a4d56622 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -523,8 +523,8 @@ void release_sink(struct query *); int close_sink(struct query *, struct msgblk *, flag); int open_warning_by_mail(struct query *, struct msgblk *); #if defined(HAVE_STDARG_H) -void stuff_warning(struct query *, const char *, ... ) - __attribute__ ((format (printf, 2, 3))) +void stuff_warning(const char *, struct query *, const char *, ... ) + __attribute__ ((format (printf, 3, 4))) ; #else void stuff_warning(); |