diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2005-11-15 03:34:06 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-11-15 03:34:06 +0800 |
commit | 4a9622a04a159b718ad5e028d836e7bd50674375 (patch) | |
tree | 447a972d9686792a635259cb25326f90ff2899fd | |
parent | c985cb5ff6c9180bd9848f953cb4a7c594b21f29 (diff) | |
download | gsoc2013-evolution-4a9622a04a159b718ad5e028d836e7bd50674375.tar.gz gsoc2013-evolution-4a9622a04a159b718ad5e028d836e7bd50674375.tar.zst gsoc2013-evolution-4a9622a04a159b718ad5e028d836e7bd50674375.zip |
Fixed a stupid typo.
2005-11-14 Harish Krishnaswamy <kharish@novell.com>
Fixed a stupid typo.
svn path=/trunk/; revision=30615
-rw-r--r-- | plugins/hula-account-setup/camel-hula-listener.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hula-account-setup/camel-hula-listener.c b/plugins/hula-account-setup/camel-hula-listener.c index ccb92580c6..9c6591cf33 100644 --- a/plugins/hula-account-setup/camel-hula-listener.c +++ b/plugins/hula-account-setup/camel-hula-listener.c @@ -176,7 +176,7 @@ add_esource (const char *conf_key, const char *group_name, const char *source_n /* TODO use_ssl = camel_url_get_param (url, "use_ssl"); */ client = gconf_client_get_default(); - if (client) { + if (!client) { g_message ("could not get a valid gconf client\n"); return; } |