summaryrefslogtreecommitdiff
path: root/jackd/jackd.c
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-03 14:36:15 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-03 14:36:15 -0400
commit5f28bf5450e81257d628de235f0cb907f8b60aa3 (patch)
treefabc9584638ae253f6753018b0bfd6005f3c8b55 /jackd/jackd.c
parent1c2b8534c06f70f36ea6ae2115a48e4df6c06335 (diff)
downloadjack1-5f28bf5450e81257d628de235f0cb907f8b60aa3.tar.gz
use -I rather than -L to load internal clients from the command line, to be consistent with jack2
Diffstat (limited to 'jackd/jackd.c')
-rw-r--r--jackd/jackd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/jackd/jackd.c b/jackd/jackd.c
index f06be54..932d64f 100644
--- a/jackd/jackd.c
+++ b/jackd/jackd.c
@@ -559,7 +559,7 @@ main (int argc, char *argv[])
int do_sanity_checks = 1;
int show_version = 0;
- const char *options = "-d:P:uvshVrRZTFlL:t:mM:n:Np:c:X:C:";
+ const char *options = "-d:P:uvshVrRZTFlI:t:mM:n:Np:c:X:C:";
struct option long_options[] =
{
/* keep ordered by single-letter option code */
@@ -568,7 +568,7 @@ main (int argc, char *argv[])
{ "driver", 1, 0, 'd' },
{ "help", 0, 0, 'h' },
{ "tmpdir-location", 0, 0, 'l' },
- { "load", 0, 0, 'L' },
+ { "internal-client", 0, 0, 'I' },
{ "no-mlock", 0, 0, 'm' },
{ "midi-bufsize", 1, 0, 'M' },
{ "name", 1, 0, 'n' },
@@ -647,7 +647,7 @@ main (int argc, char *argv[])
printf ("%s\n", jack_tmpdir);
exit (0);
- case 'L':
+ case 'I':
load_list = jack_slist_append(load_list, optarg);
break;