Upgrade to 3.1.13 OBS-URL: https://build.opensuse.org/request/show/178540 OBS-URL: https://build.opensuse.org/package/show/Base:System/at?expand=0&rev=59
21 lines
627 B
Diff
21 lines
627 B
Diff
Index: at-3.1.13/parsetime.y
|
|
===================================================================
|
|
--- at-3.1.13.orig/parsetime.y
|
|
+++ at-3.1.13/parsetime.y
|
|
@@ -504,10 +504,15 @@ parsetime(time_t currtime, int argc, cha
|
|
if (isgmt) {
|
|
exectime -= timezone;
|
|
if (currtm.tm_isdst && !exectm.tm_isdst)
|
|
exectime -= 3600;
|
|
}
|
|
+ /* exectime zeroes its seconds, thus we need +60,
|
|
+ * else "now" will be scheduled to tomorrow */
|
|
+ if (currtime > exectime + 60) {
|
|
+ exectime += 24*3600;
|
|
+ }
|
|
if (exectime < currtime)
|
|
panic("refusing to create job destined in the past");
|
|
return exectime;
|
|
}
|
|
else {
|