From: Dirk-Jan C. Binnema Date: Fri, 25 Jan 2008 16:56:05 +0000 (+0000) Subject: * fix small logic error X-Git-Tag: git_migration_finished~1759 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=22d443a8a73bee6cd2e25b256aa93691c9f16492 * fix small logic error pmo-trunk-r4092 --- diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index afb7736..664e742 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -184,7 +184,7 @@ remote_folder_is_pop (const TnyFolderStore *folder) account = tny_folder_get_account(TNY_FOLDER(folder)); } - if (!account && !TNY_IS_ACCOUNT(account)) { + if (!TNY_IS_ACCOUNT(account)) { g_warning ("%s: could not get account", __FUNCTION__); return FALSE; }