diff options
author | Dan Winship <danw@src.gnome.org> | 2003-05-17 03:20:34 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-05-17 03:20:34 +0800 |
commit | 47ae0b0247745a911a28409bec3a31a3596fc264 (patch) | |
tree | 77b420794bb454dc950e25d46f4567de3b97c27a /e-util/e-proxy.c | |
parent | a878c6c70b44dc2478acf379603c3c69034cfb7f (diff) | |
download | gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.gz gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.zst gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.zip |
Removing trailing / in key name passed to gconf_client_notify_add to kill
* e-proxy.c (e_proxy_init): Removing trailing / in key name passed
to gconf_client_notify_add to kill a warning. (Part of #43159)
svn path=/trunk/; revision=21223
Diffstat (limited to 'e-util/e-proxy.c')
-rw-r--r-- | e-util/e-proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-proxy.c b/e-util/e-proxy.c index f47231c84c..4ffbeb94a2 100644 --- a/e-util/e-proxy.c +++ b/e-util/e-proxy.c @@ -89,7 +89,7 @@ e_proxy_init () gconf_client_add_dir (client, "/system/http_proxy", GCONF_CLIENT_PRELOAD_ONELEVEL, NULL); - gconf_client_notify_add (client, "/system/http_proxy/", + gconf_client_notify_add (client, "/system/http_proxy", proxy_setting_changed, NULL, NULL, NULL); set_proxy (client); |