From e446a3dd9f6f82ef7152a98740092cb1c94af65c Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Tue, 17 Dec 2002 18:27:22 +0000 Subject: oops, use strcmp, not !strcmp here. 2002-12-17 Chris Toshok * gui/component/select-names/e-select-names-manager.c (uris_listener): oops, use strcmp, not !strcmp here. svn path=/trunk/; revision=19149 --- addressbook/gui/component/select-names/e-select-names-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addressbook/gui/component') diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c index f127532c0a..4ac995d191 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.c +++ b/addressbook/gui/component/select-names/e-select-names-manager.c @@ -428,7 +428,7 @@ uris_listener (EConfigListener *db, const char *key, char *val; /* return if it's not the key we're interested in */ - if (!strcmp (key, "/apps/evolution/addressbook/completion/uris")) + if (strcmp (key, "/apps/evolution/addressbook/completion/uris")) return; val = e_config_listener_get_string (db, "/apps/evolution/addressbook/completion/uris"); -- cgit