1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

signal: fix cli parser

This commit is contained in:
Steffen Vogel 2017-08-31 11:58:19 +02:00
parent de860087b7
commit c75507a31f

View file

@ -113,7 +113,7 @@ int signal_parse_cli(struct node *n, int argc, char *argv[])
/* Parse optional command line arguments */
char c, *endptr;
while ((c = getopt(argc, argv, "v:r:f:l:a:D:n:o:")) != -1) {
while ((c = getopt(argc, argv, "v:r:f:l:a:D:no:")) != -1) {
switch (c) {
case 'n':
s->rt = 0;