From 3eabd14ace6523781473486b533b8e4ac355fc14 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 11 Nov 2002 06:24:56 +0000 Subject: Use g_strerror when setting an exception string (we need it to be in 2002-11-11 Jeffrey Stedfast * providers/local/camel-spool-summary.c (spool_summary_sync_full): Use g_strerror when setting an exception string (we need it to be in UTF-8). (spool_summary_check): Here too. * providers/local/camel-spool-store.c (construct): Use g_strerror when setting an exception string (we need it to be in UTF-8). (get_folder): Same. (scan_dir): Here too. * providers/local/camel-spool-folder.c (spool_lock): Use g_strerror when setting an exception string (we need it to be in UTF-8). * providers/local/camel-mh-summary.c (mh_summary_check): Use g_strerror when setting an exception string (we need it to be in UTF-8). * providers/local/camel-mh-store.c (delete_folder): Use g_strerror when setting an exception string (we need it to be in UTF-8). * providers/local/camel-mbox-summary.c (summary_update): Use g_strerror when setting an exception string (we need it to be in UTF-8). (mbox_summary_sync_full): Here too. (mbox_summary_sync_quick): Same. (mbox_summary_sync): Also here. (camel_mbox_summary_sync_mbox): Again here. * providers/local/camel-mbox-folder.c (mbox_lock): Use g_strerror when setting an exception string (we need it to be in UTF-8). (mbox_append_message): Same. (mbox_get_message): Here too. * providers/local/camel-maildir-summary.c (maildir_summary_load): Use g_strerror when setting an exception string (we need it to be in UTF-8). (maildir_summary_check): Same. * providers/local/camel-maildir-store.c (get_folder): Use g_strerror when setting an exception string (we need it to be in UTF-8). (delete_folder): Same. (delete_folder): Here too. * providers/local/camel-local-summary.c (local_summary_sync): Use g_strerror when setting an exception string (we need it to be in UTF-8). * providers/local/camel-local-store.c (get_folder): Use g_strerror when setting an exception string (we need it to be in UTF-8). (create_folder): Same. (xrename): Here too. (rename_folder): And here. (delete_folder): Also here. * camel-provider.c (camel_provider_init): For debugging printfs, we want to use normal strerror (we want locale charset, not UTF-8). * camel-movemail.c (camel_movemail): Use g_strerror when setting an exception string (we need it to be in UTF-8). (movemail_external): Same. (camel_movemail_copy_file): Here too. (camel_movemail_solaris): Also here. * camel-mime-utils.c (rfc2047_decode_word): For debugging printfs, we want to use normal strerror (we want locale charset, not UTF-8). (header_encode_param): Same. * camel-mime-part-utils.c (convert_buffer): For debugging printfs, we want to use normal strerror (we want locale charset, not UTF-8). * camel-lock-client.c (camel_lock_helper_init): Use g_strerror when setting an exception string (we need it to be in UTF-8). * camel-data-cache.c (camel_data_cache_remove): Use g_strerror when setting an exception string (we need it to be in UTF-8). * camel-tcp-stream-raw.c (flaky_tcp_write): For debugging printfs, we want to use normal strerror (we want locale charset, not UTF-8). (flaky_tcp_read): Same. * camel-gpg-context.c (gpg_ctx_op_step): For debugging printfs, we want to use normal strerror (we want locale charset, not UTF-8). * camel-service.c (camel_gethostbyname): Use g_strerror when setting an exception string (we need it to be in UTF-8). * camel-lock.c (camel_lock_dot): Use g_strerror when setting an exception string (we need it to be in UTF-8). (camel_lock_fcntl): Same. svn path=/trunk/; revision=18689 --- camel/camel-movemail.c | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'camel/camel-movemail.c') diff --git a/camel/camel-movemail.c b/camel/camel-movemail.c index c4f22b6332..b5a287cfa6 100644 --- a/camel/camel-movemail.c +++ b/camel/camel-movemail.c @@ -104,9 +104,8 @@ camel_movemail(const char *source, const char *dest, CamelException *ex) if (stat (source, &st) == -1) { if (errno != ENOENT) { camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, - _("Could not check mail file " - "%s: %s"), source, - strerror (errno)); + _("Could not check mail file %s: %s"), + source, g_strerror (errno)); } return -1; } @@ -119,7 +118,7 @@ camel_movemail(const char *source, const char *dest, CamelException *ex) if (sfd == -1) { camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Could not open mail file %s: %s"), - source, strerror (errno)); + source, g_strerror (errno)); return -1; } @@ -128,7 +127,7 @@ camel_movemail(const char *source, const char *dest, CamelException *ex) camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Could not open temporary mail " "file %s: %s"), dest, - strerror (errno)); + g_strerror (errno)); close (sfd); return -1; } @@ -155,8 +154,8 @@ camel_movemail(const char *source, const char *dest, CamelException *ex) ftruncate (sfd, 0); } else { camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, - _("Failed to store mail in temp file %s: %s"), dest, - strerror(errno)); + _("Failed to store mail in temp file %s: %s"), + dest, g_strerror (errno)); res = -1; } } else @@ -186,7 +185,7 @@ movemail_external (const char *source, const char *dest, CamelException *ex) sigprocmask (SIG_SETMASK, &omask, NULL); camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Could not create pipe: %s"), - strerror (errno)); + g_strerror (errno)); return; } @@ -198,7 +197,7 @@ movemail_external (const char *source, const char *dest, CamelException *ex) sigprocmask (SIG_SETMASK, &omask, NULL); camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Could not fork: %s"), - strerror (errno)); + g_strerror (errno)); return; case 0: @@ -260,7 +259,7 @@ camel_movemail_copy_file(int sfd, int dfd, CamelException *ex) continue; camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Error reading mail file: %s"), - strerror (errno)); + g_strerror (errno)); return -1; } @@ -271,7 +270,7 @@ camel_movemail_copy_file(int sfd, int dfd, CamelException *ex) continue; /* continues inner loop */ camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Error writing mail temp file: %s"), - strerror (errno)); + g_strerror (errno)); return -1; } written += nwrote; @@ -464,7 +463,7 @@ camel_movemail_solaris (int oldsfd, int dfd, CamelException *ex) if (sfd == -1) { camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Error copying mail temp file: %s"), - strerror (errno)); + g_strerror (errno)); return -1; } @@ -531,7 +530,7 @@ fail: camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, _("Error copying mail temp file: %s"), - strerror (errno)); + g_strerror (errno)); camel_object_unref((CamelObject *)mp); -- cgit v1.2.3