diff options
author | Milan Crha <mcrha@redhat.com> | 2014-07-08 19:07:08 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-07-08 19:07:08 +0800 |
commit | 569a2903b9e7bdccd4f1e7145039d2a4b8211ca2 (patch) | |
tree | d02dea1f14bc3490747a1571f535fb36c235ed56 | |
parent | 28391aa9253135c92228b7c6ebd49268e23acdee (diff) | |
download | gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.tar gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.tar.gz gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.tar.bz2 gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.tar.lz gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.tar.xz gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.tar.zst gsoc2013-evolution-569a2903b9e7bdccd4f1e7145039d2a4b8211ca2.zip |
Correct typo in the previous commit ('error' versus 'local_error')
-rw-r--r-- | libemail-engine/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libemail-engine/mail-ops.c b/libemail-engine/mail-ops.c index c12555ff5d..c7bea6326a 100644 --- a/libemail-engine/mail-ops.c +++ b/libemail-engine/mail-ops.c @@ -850,7 +850,7 @@ exit: * camel_service_disconnect_sync(). */ if (g_cancellable_is_cancelled (cancellable)) { camel_service_disconnect_sync (service, FALSE, NULL, NULL); - } else if (error != NULL) { + } else if (local_error != NULL) { camel_service_disconnect_sync (service, FALSE, cancellable, NULL); } else { camel_service_disconnect_sync (service, TRUE, cancellable, &local_error); |