aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2017-10-12 13:28:57 -0700
committerGitHub <noreply@github.com>2017-10-12 13:28:57 -0700
commitf0ac5484c182d7945398163bbd16d3728087a0b2 (patch)
tree215794363cd5da55a55cbe686c1dc4afaa88e9b1 /src
parentMerge pull request #531 from jonls/time-adjustment-docs (diff)
parentFix missing checks and verbose output (diff)
downloadredshift-ng-f0ac5484c182d7945398163bbd16d3728087a0b2.tar.gz
redshift-ng-f0ac5484c182d7945398163bbd16d3728087a0b2.tar.bz2
redshift-ng-f0ac5484c182d7945398163bbd16d3728087a0b2.tar.xz
Merge pull request #532 from jonls/fix-time-based
Fix missing checks and verbose output
Diffstat (limited to 'src')
-rw-r--r--src/redshift.c29
1 files changed, 17 insertions, 12 deletions
diff --git a/src/redshift.c b/src/redshift.c
index efe21bd..4774b7e 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -1760,15 +1760,28 @@ main(int argc, char *argv[])
}
}
- if (verbose) {
- printf(_("Temperatures: %dK at day, %dK at night\n"),
- scheme.day.temperature,
- scheme.night.temperature);
+ /* Solar elevations */
+ if (scheme.high < scheme.low) {
+ fprintf(stderr,
+ _("High transition elevation cannot be lower than"
+ " the low transition elevation.\n"));
+ exit(EXIT_FAILURE);
+ }
+ if (verbose) {
/* TRANSLATORS: Append degree symbols if possible. */
printf(_("Solar elevations: day above %.1f, night below %.1f\n"),
scheme.high, scheme.low);
}
+ }
+
+ if (mode != PROGRAM_MODE_RESET &&
+ mode != PROGRAM_MODE_MANUAL) {
+ if (verbose) {
+ printf(_("Temperatures: %dK at day, %dK at night\n"),
+ scheme.day.temperature,
+ scheme.night.temperature);
+ }
/* Color temperature */
if (scheme.day.temperature < MIN_TEMP ||
@@ -1780,14 +1793,6 @@ main(int argc, char *argv[])
MIN_TEMP, MAX_TEMP);
exit(EXIT_FAILURE);
}
-
- /* Solar elevations */
- if (scheme.high < scheme.low) {
- fprintf(stderr,
- _("High transition elevation cannot be lower than"
- " the low transition elevation.\n"));
- exit(EXIT_FAILURE);
- }
}
if (mode == PROGRAM_MODE_MANUAL) {