summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Brand <tom@trellis.ch>2019-02-07 20:23:43 +0100
committerThomas Brand <tom@trellis.ch>2019-02-07 20:23:43 +0100
commit41b64e7cd4ce4d948eef24cf3871a63b4394fd03 (patch)
tree49161562ed3af9b7f22d9ac1955107dbb057a1ef
parent25953b664b8c4c58d22237a10755066649a981b6 (diff)
downloadjack2-41b64e7cd4ce4d948eef24cf3871a63b4394fd03.tar.gz
Remove undocumented -a/--all flag (not implemented, same as -l).
-rw-r--r--example-clients/property.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/example-clients/property.c b/example-clients/property.c
index 26245e26..d8027ba0 100644
--- a/example-clients/property.c
+++ b/example-clients/property.c
@@ -89,7 +89,6 @@ int main (int argc, char* argv[])
int set = 1;
int delete = 0;
int delete_all = 0;
- int list_all = 0;
int c;
int option_index;
extern int optind;
@@ -98,7 +97,6 @@ int main (int argc, char* argv[])
{ "delete", 0, 0, 'd' },
{ "delete-all", 0, 0, 'D' },
{ "list", 0, 0, 'l' },
- { "all", 0, 0, 'a' },
{ "client", 0, 0, 'c' },
{ "port", 0, 0, 'p' },
{ 0, 0, 0, 0 }
@@ -139,13 +137,6 @@ int main (int argc, char* argv[])
delete_all = 0;
break;
- case 'a':
- list_all = 1;
- set = 0;
- delete = 0;
- delete_all = 0;
- break;
-
case 'p':
subject_is_port = 1;
break;