summaryrefslogtreecommitdiff
path: root/src/times.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/times.cc')
-rw-r--r--src/times.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/times.cc b/src/times.cc
index 9712c2ee..8ea90892 100644
--- a/src/times.cc
+++ b/src/times.cc
@@ -173,6 +173,7 @@ namespace {
#else // USE_BOOST_FACETS
std::tm data;
std::memset(&data, 0, sizeof(std::tm));
+ data.tm_year = CURRENT_DATE().year() - 1900;
data.tm_mday = 1; // some formats have no day
if (strptime(str, fmt_str, &data))
return gregorian::date_from_tm(data);