Browse Source

Remove undocumented -a/--all flag (not implemented, same as -l).

tags/v1.9.13
Thomas Brand 6 years ago
parent
commit
41b64e7cd4
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      example-clients/property.c

+ 0
- 9
example-clients/property.c View File

@@ -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;


Loading…
Cancel
Save