From 867ba42f649ae1f411430bcce00c754f19d8df1f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 5 Oct 2013 12:53:05 -0400 Subject: [PATCH] jack_property should not attempt to start a server if one is not running --- property.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/property.c b/property.c index 42c7536..88a6162 100644 --- a/property.c +++ b/property.c @@ -82,7 +82,7 @@ get_subject (jack_client_t* client, char* argv[], int* optind) int main (int argc, char* argv[]) { jack_client_t* client = NULL; - jack_options_t options = JackNullOption; + jack_options_t options = JackNoStartServer; char* key = NULL; char* value = NULL; char* type = NULL;