diff options
author | Not Zed <NotZed@Ximian.com> | 2002-04-03 21:28:30 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-04-03 21:28:30 +0800 |
commit | e9a1f5121d164292990f5cec0ef73efd4ddf0ed5 (patch) | |
tree | 184ca42544efdffa2834ce20e9ec81c2cb852ca8 /camel/camel-block-file.c | |
parent | c98a56ead46ff62ddfc938a0f422ce7bcf7a31c6 (diff) | |
download | gsoc2013-evolution-e9a1f5121d164292990f5cec0ef73efd4ddf0ed5.tar.gz gsoc2013-evolution-e9a1f5121d164292990f5cec0ef73efd4ddf0ed5.tar.zst gsoc2013-evolution-e9a1f5121d164292990f5cec0ef73efd4ddf0ed5.zip |
Turn indexing back on, fingers crossed ...
2002-04-03 Not Zed <NotZed@Ximian.com>
* providers/local/camel-local-folder.c
(camel_local_folder_construct): Turn indexing back on, fingers
crossed ...
* camel-block-file.c (sync_nolock): #!@$@$#@~#$
DF@#$!Q@$#!@$#!#%. Well it helps if we're iterating a list to
iterate the node pointer ...
* camel-text-index.c (text_index_sync): Sync the key tables
explcitly.
(text_index_sync): Debug out frag info.
(camel_text_index_dump): Added a (rather large, but optional) raw
dumping mode for debugging purposes.
* camel-partition-table.c (camel_key_table_finalise): Sync root
block when done.
svn path=/trunk/; revision=16329
Diffstat (limited to 'camel/camel-block-file.c')
-rw-r--r-- | camel/camel-block-file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-block-file.c b/camel/camel-block-file.c index e73b266026..6b889f9da1 100644 --- a/camel/camel-block-file.c +++ b/camel/camel-block-file.c @@ -98,7 +98,7 @@ block_file_validate_root(CamelBlockFile *bs) fstat(bs->fd, &st); - (printf("Validate root:\n")); + (printf("Validate root: '%s'\n", bs->path)); (printf("version: %.8s (%.8s)\n", bs->root->version, bs->version)); (printf("block size: %d (%d)%s\n", br->block_size, bs->block_size, br->block_size != bs->block_size ? " BAD":" OK")); @@ -693,8 +693,8 @@ sync_nolock(CamelBlockFile *bs) work = TRUE; if (sync_block_nolock(bs, bl) == -1) return -1; - bl = bn; } + bl = bn; bn = bn->next; } |