diff options
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-proxy.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index a7cff29c1b..f376240c42 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2003-05-16 Dan Winship <danw@ximian.com> + + * e-proxy.c (e_proxy_init): Removing trailing / in key name passed + to gconf_client_notify_add to kill a warning. (Part of #43159) + 2003-05-16 Jeremy Katz <katzj@redhat.com> * e-sexp.c (term_eval_and): Use glib macros for pointer/int 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); |