From 22d443a8a73bee6cd2e25b256aa93691c9f16492 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 25 Jan 2008 16:56:05 +0000 Subject: [PATCH 1/1] * fix small logic error pmo-trunk-r4092 --- src/modest-ui-actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.7.9.5