diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 19:48:58 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 19:48:58 +0100 |
commit | f5073ed39f8a244fe70ba2294aa8dec18bac39d0 (patch) | |
tree | e86f82721c0cbab173c0a9aa65e61324969e018e /src/location.c | |
parent | Clean up (diff) | |
download | redshift-ng-f5073ed39f8a244fe70ba2294aa8dec18bac39d0.tar.gz redshift-ng-f5073ed39f8a244fe70ba2294aa8dec18bac39d0.tar.bz2 redshift-ng-f5073ed39f8a244fe70ba2294aa8dec18bac39d0.tar.xz |
Add ; as option delimiter
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/location.c')
-rw-r--r-- | src/location.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/location.c b/src/location.c index bd852a1..8ca4374 100644 --- a/src/location.c +++ b/src/location.c @@ -82,9 +82,9 @@ try_start(const struct location_provider *provider, LOCATION_STATE **state_out, goto set_option_fail; /* Set provider options from command line */ - for (i = 0; args; i++) { - next_arg = strchr(args, ':'); - if (next_arg) + for (i = 0; args && *args; i++, args = next_arg) { + next_arg = &args[strcspn(args, ";:")]; + if (*next_arg) *next_arg++ = '\0'; key = args; @@ -107,8 +107,6 @@ try_start(const struct location_provider *provider, LOCATION_STATE **state_out, if (provider->set_option(*state_out, key, value) < 0) goto set_option_fail; - - args = next_arg; } /* Start provider */ |