diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-04-14 06:21:47 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-04-14 06:21:47 +0800 |
commit | 2c05dbde2c25eeeee64f7694de14e9ee53bfe774 (patch) | |
tree | 9a1863f30a6a503dc667bae3e58409f5307c907b /camel/providers | |
parent | daf16dd6e7e6fbc55686a98097a6cb3c40e0a48e (diff) | |
download | gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.tar gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.tar.gz gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.tar.bz2 gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.tar.lz gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.tar.xz gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.tar.zst gsoc2013-evolution-2c05dbde2c25eeeee64f7694de14e9ee53bfe774.zip |
s/imap_store/store/, fixing a typo that was causing the build to fail.
2001-04-13 Jon Trowbridge <trow@ximian.com>
* providers/imap/camel-imap-store.c (imap_disconnect):
s/imap_store/store/, fixing a typo that was causing the build to
fail.
svn path=/trunk/; revision=9306
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index 7ff46b9850..214b9fe18b 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -734,11 +734,11 @@ imap_disconnect (CamelService *service, gboolean clean, CamelException *ex) store->subscribed_folders = NULL; } - if (imap_store->authtypes) { - g_hash_table_foreach_remove (imap_store->authtypes, + if (store->authtypes) { + g_hash_table_foreach_remove (store->authtypes, free_key, NULL); - g_hash_table_destroy (imap_store->authtypes); - imap_store->authtypes = NULL; + g_hash_table_destroy (store->authtypes); + store->authtypes = NULL; } if (store->namespace && !(store->parameters & IMAP_PARAM_OVERRIDE_NAMESPACE)) { |