diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-11-11 14:40:28 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-11-11 14:40:28 +0800 |
commit | e1ef0a9ced256cb86d19b379c3097efdbcdb498e (patch) | |
tree | a4dcceeaecae46ce8b14fe631fca952ba29d97aa /camel/providers/pop3/camel-pop3-stream.c | |
parent | 3eabd14ace6523781473486b533b8e4ac355fc14 (diff) | |
download | gsoc2013-evolution-e1ef0a9ced256cb86d19b379c3097efdbcdb498e.tar.gz gsoc2013-evolution-e1ef0a9ced256cb86d19b379c3097efdbcdb498e.tar.zst gsoc2013-evolution-e1ef0a9ced256cb86d19b379c3097efdbcdb498e.zip |
Use g_strerror when setting an exception string (we need it to be in
2002-11-11 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-folder.c (get_message_simple): Use
g_strerror when setting an exception string (we need it to be in
UTF-8).
* providers/pop3/camel-pop3-store.c (pop3_try_authenticate): Use
g_strerror when setting an exception string (we need it to be in
UTF-8).
* providers/pop3/camel-pop3-folder.c (pop3_refresh_info): Use
g_strerror when setting an exception string (we need it to be in
UTF-8).
(pop3_get_message): Same.
svn path=/trunk/; revision=18690
Diffstat (limited to 'camel/providers/pop3/camel-pop3-stream.c')
-rw-r--r-- | camel/providers/pop3/camel-pop3-stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/pop3/camel-pop3-stream.c b/camel/providers/pop3/camel-pop3-stream.c index 5b0dd979ca..23b9b1e040 100644 --- a/camel/providers/pop3/camel-pop3-stream.c +++ b/camel/providers/pop3/camel-pop3-stream.c @@ -64,7 +64,7 @@ stream_fill(CamelPOP3Stream *is) is->end[0] = '\n'; return is->end - is->ptr; } else { - dd(printf("POP3_STREAM_FILL(ERROR): '%s'\n", strerror(errno))); + dd(printf("POP3_STREAM_FILL(ERROR): '%s'\n", strerror (errno))); return -1; } } |