diff options
author | Not Zed <NotZed@HelixCode.com> | 2000-10-12 22:04:17 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-10-12 22:04:17 +0800 |
commit | c645a2a9e8b2f586199df99a3667be2037912114 (patch) | |
tree | 1ec8e8c39b998eb8d3459c788f31a031c6bfd484 /libibex/block.c | |
parent | c308f5eeef858ef813205af508e8ef94a8208d62 (diff) | |
download | gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.tar gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.tar.gz gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.tar.bz2 gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.tar.lz gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.tar.xz gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.tar.zst gsoc2013-evolution-c645a2a9e8b2f586199df99a3667be2037912114.zip |
Bumped ibex rev.
2000-10-12 Not Zed <NotZed@HelixCode.com>
* ibex_internal.h (struct ibex): Bumped ibex rev.
* block.c (ibex_block_cache_open): Bumped the ibex file revision
because of the hash table size change.
svn path=/trunk/; revision=5887
Diffstat (limited to 'libibex/block.c')
-rw-r--r-- | libibex/block.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libibex/block.c b/libibex/block.c index 6f6cd60657..8e10a116cb 100644 --- a/libibex/block.c +++ b/libibex/block.c @@ -408,11 +408,11 @@ ibex_block_cache_open(const char *name, int flags, int mode) root = (struct _root *)ibex_block_read(block_cache, 0); if (root->roof == 0 - || memcmp(root->version, "ibx3", 4) + || memcmp(root->version, "ibx4", 4) || ((root->flags & IBEX_ROOT_SYNCF) == 0)) { (printf("Initialising superblock\n")); /* reset root data */ - memcpy(root->version, "ibx3", 4); + memcpy(root->version, "ibx4", 4); root->roof = 1024; root->free = 0; root->words = 0; |