diff options
author | Chris Toshok <toshok@ximian.com> | 2002-12-18 02:27:22 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-12-18 02:27:22 +0800 |
commit | e446a3dd9f6f82ef7152a98740092cb1c94af65c (patch) | |
tree | c8de7444615ea8788333d84418a233386f315bd1 /addressbook/gui/component/select-names | |
parent | 917e520bbe50ce58fb69d33438a580be487e96d8 (diff) | |
download | gsoc2013-evolution-e446a3dd9f6f82ef7152a98740092cb1c94af65c.tar.gz gsoc2013-evolution-e446a3dd9f6f82ef7152a98740092cb1c94af65c.tar.zst gsoc2013-evolution-e446a3dd9f6f82ef7152a98740092cb1c94af65c.zip |
oops, use strcmp, not !strcmp here.
2002-12-17 Chris Toshok <toshok@ximian.com>
* gui/component/select-names/e-select-names-manager.c
(uris_listener): oops, use strcmp, not !strcmp here.
svn path=/trunk/; revision=19149
Diffstat (limited to 'addressbook/gui/component/select-names')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |