svn commit: r327488 - head/sbin/shutdown
Eitan Adler
eadler at FreeBSD.org
Tue Jan 2 09:02:43 UTC 2018
Author: eadler
Date: Tue Jan 2 09:02:42 2018
New Revision: 327488
URL: https://svnweb.freebsd.org/changeset/base/327488
Log:
shutdown: Fix r327476 by adding init
Initialize maybe_today. While here sort.
PR: 32411
Additionally reported by: rgrimes, ian
Modified:
head/sbin/shutdown/shutdown.c
Modified: head/sbin/shutdown/shutdown.c
==============================================================================
--- head/sbin/shutdown/shutdown.c Tue Jan 2 05:27:24 2018 (r327487)
+++ head/sbin/shutdown/shutdown.c Tue Jan 2 09:02:42 2018 (r327488)
@@ -431,7 +431,7 @@ getoffset(char *timearg)
struct tm *lt;
char *p;
time_t now;
- int this_year, maybe_today;
+ int maybe_today, this_year;
char *timeunit;
(void)time(&now);
@@ -482,6 +482,7 @@ getoffset(char *timearg)
unsetenv("TZ"); /* OUR timezone */
lt = localtime(&now); /* current time val */
+ maybe_today = 1;
switch(strlen(timearg)) {
case 10:
More information about the svn-src-all
mailing list