diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-11-11 14:24:56 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-11-11 14:24:56 +0800 |
commit | 3eabd14ace6523781473486b533b8e4ac355fc14 (patch) | |
tree | 29d9174bec983d227fefa0d5e480ee8a7aff1509 /camel/camel-text-index.c | |
parent | d11a036199c97b083f531c03004f6ef20b38f843 (diff) | |
download | gsoc2013-evolution-3eabd14ace6523781473486b533b8e4ac355fc14.tar.gz gsoc2013-evolution-3eabd14ace6523781473486b533b8e4ac355fc14.tar.zst gsoc2013-evolution-3eabd14ace6523781473486b533b8e4ac355fc14.zip |
Use g_strerror when setting an exception string (we need it to be in
2002-11-11 Jeffrey Stedfast <fejj@ximian.com>
* 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
Diffstat (limited to 'camel/camel-text-index.c')
-rw-r--r-- | camel/camel-text-index.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/camel/camel-text-index.c b/camel/camel-text-index.c index 3d0e71a265..60dc5b7402 100644 --- a/camel/camel-text-index.c +++ b/camel/camel-text-index.c @@ -190,11 +190,13 @@ text_index_add_name_to_word(CamelIndex *idx, const char *word, camel_key_t namei data = 0; wordid = camel_key_table_add(p->word_index, word, 0, 0); if (wordid == 0){ - g_warning("Could not create key entry for word '%s': %s\n", word, strerror(errno)); + g_warning ("Could not create key entry for word '%s': %s\n", + word, strerror (errno)); return; } if (camel_partition_table_add(p->word_hash, word, wordid) == -1) { - g_warning("Could not create hash entry for word '%s': %s\n", word, strerror(errno)); + g_warning ("Could not create hash entry for word '%s': %s\n", + word, strerror (errno)); return; } rb->words++; @@ -202,7 +204,8 @@ text_index_add_name_to_word(CamelIndex *idx, const char *word, camel_key_t namei } else { data = camel_key_table_lookup(p->word_index, wordid, NULL, 0); if (data == 0) { - g_warning("Could not find key entry for word '%s': %s\n", word, strerror(errno)); + g_warning ("Could not find key entry for word '%s': %s\n", + word, strerror (errno)); return; } } @@ -902,14 +905,14 @@ camel_text_index_check(const char *path) sprintf(block, "%s.index", path); blocks = camel_block_file_new(block, O_RDONLY, CAMEL_TEXT_INDEX_VERSION, CAMEL_BLOCK_SIZE); if (blocks == NULL) { - io(printf("Check failed: No block file: %s\n", strerror(errno))); + io(printf("Check failed: No block file: %s\n", strerror (errno))); return -1; } key = alloca(strlen(path)+12); sprintf(key, "%s.index.data", path); keys = camel_key_file_new(key, O_RDONLY, CAMEL_TEXT_INDEX_KEY_VERSION); if (keys == NULL) { - io(printf("Check failed: No key file: %s\n", strerror(errno))); + io(printf("Check failed: No key file: %s\n", strerror (errno))); camel_object_unref((CamelObject *)blocks); return -1; } |