isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 55e65147df8529a691fd640bf01fc627777973fb
parent a49893f32ed20e109ba974dd74cd917c48c609e5
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat,  9 Nov 2013 13:53:13 +0100

fix compilation with older gcc versions

the warning suppression pragma within function scope is apparently a new
thing.
as i don't want to disable the check for the entire function (even if
this currently would make no difference), just use a wrapper function
to suppress the format string check.

Diffstat:
Msrc/drv_imap.c | 15+++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/src/drv_imap.c b/src/drv_imap.c @@ -2046,6 +2046,12 @@ imap_trash_msg( store_t *gctx, message_t *msg, static void imap_store_msg_p2( imap_store_t *, struct imap_cmd *, int ); +static size_t +my_strftime( char *s, size_t max, const char *fmt, const struct tm *tm ) +{ + return strftime( s, max, fmt, tm ); +} + static void imap_store_msg( store_t *gctx, msg_data_t *data, int to_trash, void (*cb)( int sts, int uid, void *aux ), void *aux ) @@ -2082,15 +2088,8 @@ imap_store_msg( store_t *gctx, msg_data_t *data, int to_trash, } } if (data->date) { -#ifdef __GNUC__ -# pragma GCC diagnostic push -# pragma GCC diagnostic ignored "-Wformat" /* configure ensures that %z actually works. */ -#endif - strftime( datestr, sizeof(datestr), "%d-%b-%Y %H:%M:%S %z", localtime( &data->date ) ); -#ifdef __GNUC__ -# pragma GCC diagnostic pop -#endif + my_strftime( datestr, sizeof(datestr), "%d-%b-%Y %H:%M:%S %z", localtime( &data->date ) ); imap_exec( ctx, &cmd->gen, imap_store_msg_p2, "APPEND \"%\\s\" %s\"%\\s\" ", buf, flagstr, datestr ); } else {