From: Christian Dywan Date: Tue, 10 Jan 2012 00:42:37 +0000 (+0100) Subject: Don't encode config hash in app name for socket X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=556546320b22179625d876b33a07e516df857426;p=midori Don't encode config hash in app name for socket --- diff --git a/midori/midori-app.c b/midori/midori-app.c index 0666e6f0..99b10013 100644 --- a/midori/midori-app.c +++ b/midori/midori-app.c @@ -722,12 +722,16 @@ midori_app_create_instance (MidoriApp* app) if (!app->name) { + #if HAVE_UNIQUE const gchar* config = sokoke_set_config_dir (NULL); gchar* name_hash; name_hash = g_compute_checksum_for_string (G_CHECKSUM_MD5, config, -1); app->name = g_strconcat ("midori", "_", name_hash, NULL); g_free (name_hash); g_object_notify (G_OBJECT (app), "name"); + #else + app->name = g_strdup (PACKAGE_NAME); + #endif } if (!(display = gdk_display_get_default ()))