From: Kaj-Michael Lang Date: Thu, 11 Oct 2007 09:43:43 +0000 (+0300) Subject: Be nice and clean up curl when exiting. Remove gconf_init, it's deprecated. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=388a8d432b40b4be2be90f395620254f6a14aa99;p=mapper Be nice and clean up curl when exiting. Remove gconf_init, it's deprecated. --- diff --git a/src/mapper.c b/src/mapper.c index aa5c5da..f497828 100644 --- a/src/mapper.c +++ b/src/mapper.c @@ -222,7 +222,6 @@ gtk_init(&argc, &argv); #if defined (WITH_GST) gst_init(&argc, &argv); #endif -gconf_init(argc, argv, NULL); gnome_vfs_init(); curl_global_init(CURL_GLOBAL_NOTHING); timezone_init(); @@ -242,5 +241,6 @@ gnome_vfs_shutdown(); #ifdef WITH_OSSO osso_deinitialize(_osso); #endif +curl_global_cleanup(); return 0; }