aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-vidmode.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2013-12-09 11:07:47 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2013-12-09 12:28:45 -0500
commite4034ba27de725e0fa9b6c4de8f32ca7ad0193a3 (patch)
treec550355d8a93ae92a7bd7847a3001218c616270d /src/gamma-vidmode.c
parentConstify gamma parameter to set_temperature() methods (diff)
downloadredshift-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/gamma-vidmode.c')
-rw-r--r--src/gamma-vidmode.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gamma-vidmode.c b/src/gamma-vidmode.c
index cde69eb..656ce00 100644
--- a/src/gamma-vidmode.c
+++ b/src/gamma-vidmode.c
@@ -135,12 +135,6 @@ vidmode_print_help(FILE *f)
int
vidmode_set_option(vidmode_state_t *state, const char *key, const char *value)
{
- if (key == NULL) {
- fprintf(stderr, _("Missing value for parameter: `%s'.\n"),
- key);
- return -1;
- }
-
if (strcasecmp(key, "screen") == 0) {
state->screen_num = atoi(value);
} else {