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/gamma.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/gamma.c')
-rw-r--r-- | src/gamma.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gamma.c b/src/gamma.c index a66f2b2..44042d0 100644 --- a/src/gamma.c +++ b/src/gamma.c @@ -63,9 +63,12 @@ try_start(const struct gamma_method *method, GAMMA_STATE **state_out, struct con goto set_option_fail; /* Set method options from command line */ - while (args) { - next_arg = strchr(args, ':'); - if (next_arg) + for (; args && *args; args = next_arg) { + if (!strncasecmp(args, "display=", sizeof("display=") - 1U)) + next_arg = &args[strcspn(args, ";")]; + else + next_arg = &args[strcspn(args, ";:")]; + if (*next_arg) *next_arg++ = '\0'; key = args; @@ -78,8 +81,6 @@ try_start(const struct gamma_method *method, GAMMA_STATE **state_out, struct con if (method->set_option(*state_out, key, value) < 0) goto set_option_fail; - - args = next_arg; } /* Start method */ |