You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On OpenBSD, which uses dateutils, we get the following error multiple times if days, months, or years to keep are set to 1 in the config file:
dadd: invalid option -- 0
This is because reldate() is called with days/months/years to keep less one, which would be zero, so reldate is calling dadd with an adjustment of -0d or -0m or -0y, which results in the error.
The text was updated successfully, but these errors were encountered:
On OpenBSD, which uses
dateutils
, we get the following error multiple times if days, months, or years to keep are set to1
in the config file:This is because
reldate()
is called with days/months/years to keep less one, which would be zero, soreldate
is callingdadd
with an adjustment of-0d
or-0m
or-0y
, which results in the error.The text was updated successfully, but these errors were encountered: