summaryrefslogtreecommitdiff
path: root/command_service.c
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-09-04 15:08:05 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2010-09-04 15:08:05 +0200
commit2e1a78151f02468a3ea5e806a750443aef44f10d (patch)
treec9908699bbe5bd52c8c661fd6c01ba2ff1421b7c /command_service.c
parentff98a0702c71e1b729ed227b202ec40edb7b2d9c (diff)
Connect GThreadedSocketService to 'run' instead of 'incoming'.
Diffstat (limited to 'command_service.c')
-rw-r--r--command_service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command_service.c b/command_service.c
index 1169432..ce1589d 100644
--- a/command_service.c
+++ b/command_service.c
@@ -54,7 +54,7 @@ gboolean server_start() {
return FALSE;
}
- g_signal_connect(ss, "incoming", (GCallback)service_incoming, NULL);
+ g_signal_connect(ss, "run", (GCallback)service_incoming, NULL);
g_socket_service_start(ss);
return TRUE;