diff options
author | 9 <NotZed@Ximian.com> | 2001-10-29 16:24:00 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-29 16:24:00 +0800 |
commit | c43aa966cbac71c6e5dbceb55bb172dcc3687bbf (patch) | |
tree | 12a9b86802e1a65afc9049e6d5d81e114b26182e /camel/camel-mime-utils.c | |
parent | fa9505a288ebeab16883eb940bd1418f176fc426 (diff) | |
download | gsoc2013-evolution-c43aa966cbac71c6e5dbceb55bb172dcc3687bbf.tar.gz gsoc2013-evolution-c43aa966cbac71c6e5dbceb55bb172dcc3687bbf.tar.zst gsoc2013-evolution-c43aa966cbac71c6e5dbceb55bb172dcc3687bbf.zip |
Turn off w() -> warnings.
2001-10-29 <NotZed@Ximian.com>
* camel-mime-utils.c: Turn off w() -> warnings.
* providers/imap/camel-imap-store.c (rename_folder): Also rename
the message cache.
(rename_folder): Fix subscribed folders table with rename(s).
* providers/imap/camel-imap-folder.c (imap_rename): Implement,
rename the cache dir pointer.
* providers/imap/camel-imap-message-cache.c
(camel_imap_message_cache_set_path): New method to set the path
used by a message cache.
svn path=/trunk/; revision=14327
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 3b2d0f94f3..405939183d 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -72,7 +72,7 @@ int free_count = 0; #endif /* for all warnings ... */ -#define w(x) x +#define w(x) #define d(x) #define d2(x) @@ -2959,7 +2959,7 @@ header_param_list_format_append (GString *out, struct _header_param *p) value = header_encode_param (p->value, &encoded); if (!value) { - g_warning ("appending parameter %s=%s violates rfc2184", p->name, p->value); + w(g_warning ("appending parameter %s=%s violates rfc2184", p->name, p->value)); value = g_strdup (p->value); } |