summaryrefslogtreecommitdiff
path: root/example-clients/transport.c
diff options
context:
space:
mode:
Diffstat (limited to 'example-clients/transport.c')
-rw-r--r--example-clients/transport.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/example-clients/transport.c b/example-clients/transport.c
index a3939368..4847c1b8 100644
--- a/example-clients/transport.c
+++ b/example-clients/transport.c
@@ -459,9 +459,11 @@ int main(int argc, char *argv[])
return 1;
}
+#ifndef WIN32
signal(SIGQUIT, signal_handler);
- signal(SIGTERM, signal_handler);
signal(SIGHUP, signal_handler);
+#endif
+ signal(SIGTERM, signal_handler);
signal(SIGINT, signal_handler);
jack_on_shutdown(client, jack_shutdown, 0);