diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2013-12-09 11:07:47 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2013-12-09 12:28:45 -0500 |
commit | e4034ba27de725e0fa9b6c4de8f32ca7ad0193a3 (patch) | |
tree | c550355d8a93ae92a7bd7847a3001218c616270d /src/redshift.c | |
parent | Constify gamma parameter to set_temperature() methods (diff) | |
download | redshift-ng-e4034ba27de725e0fa9b6c4de8f32ca7ad0193a3.tar.gz redshift-ng-e4034ba27de725e0fa9b6c4de8f32ca7ad0193a3.tar.bz2 redshift-ng-e4034ba27de725e0fa9b6c4de8f32ca7ad0193a3.tar.xz |
Do not allow NULL keys when setting options
This should fix a bug where command line options for the "manual" location
provider cannot override the config file. To keep compatability with previous
versions the command line parser will still special case parsing "-l LAT:LON"
and set the correct options in "manual".
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/src/redshift.c b/src/redshift.c index 1856f8b..a1273d4 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -439,17 +439,30 @@ provider_try_start(const location_provider_t *provider, } /* Set provider options from command line. */ + const char *manual_keys[] = { "lat", "lon" }; + int i = 0; while (args != NULL) { char *next_arg = strchr(args, ':'); if (next_arg != NULL) *(next_arg++) = '\0'; - char *key = NULL; + const char *key = args; char *value = strchr(args, '='); - if (value != NULL) { - key = args; - *(value++) = '\0'; + if (value == NULL) { + /* The options for the "manual" method can be set + without keys on the command line for convencience + and for backwards compatability. We add the proper + keys here before calling set_option(). */ + if (strcmp(provider->name, "manual") == 0 && + i < sizeof(manual_keys)/sizeof(manual_keys[0])) { + key = manual_keys[i]; + value = args; + } else { + fprintf(stderr, _("Failed to parse option `%s'.\n"), + args); + return -1; + } } else { - value = args; + *(value++) = '\0'; } r = provider->set_option(state, key, value); @@ -464,6 +477,7 @@ provider_try_start(const location_provider_t *provider, } args = next_arg; + i += 1; } /* Start provider. */ @@ -521,13 +535,14 @@ method_try_start(const gamma_method_t *method, char *next_arg = strchr(args, ':'); if (next_arg != NULL) *(next_arg++) = '\0'; - char *key = NULL; + const char *key = args; char *value = strchr(args, '='); - if (value != NULL) { - key = args; - *(value++) = '\0'; + if (value == NULL) { + fprintf(stderr, _("Failed to parse option `%s'.\n"), + args); + return -1; } else { - value = args; + *(value++) = '\0'; } r = method->set_option(state, key, value); |