summaryrefslogtreecommitdiff
path: root/applet
diff options
context:
space:
mode:
authorRaul Gutierrez Segales <rgs@collabora.co.uk>2011-06-27 14:58:22 +0100
committerBastien Nocera <hadess@hadess.net>2011-06-27 15:26:20 +0100
commit4f1a25e9f5f7f2e4fe576c0e181553cd4e4e8d6c (patch)
tree6560769a90c3e0039f7a8bc25143d6dde84e385c /applet
parent38938f1f908f78ee2da2601de72b47659e2f0e9d (diff)
downloadgnome-bluetooth-4f1a25e9f5f7f2e4fe576c0e181553cd4e4e8d6c.tar.gz
applet: Parameters for g_async_spawn need no quotes
https://bugzilla.gnome.org/show_bug.cgi?id=653479
Diffstat (limited to 'applet')
-rw-r--r--applet/bluetooth-applet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applet/bluetooth-applet.c b/applet/bluetooth-applet.c
index 7c14977d..fbc1a216 100644
--- a/applet/bluetooth-applet.c
+++ b/applet/bluetooth-applet.c
@@ -241,7 +241,7 @@ void bluetooth_applet_send_to_address (BluetoothApplet *applet,
if (address != NULL && alias != NULL) {
char *s;
- s = g_strdup_printf ("--name=\"%s\"", alias);
+ s = g_strdup_printf ("--name=%s", alias);
g_ptr_array_add (a, s);
}
g_ptr_array_add (a, NULL);