$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Andy Schweitzer (a_schweitzer_at_[hidden])
Date: 2005-06-11 19:20:56
Hello there, been playing with the logging library. Is this the right
place to post bug reports?
It seems that $yy prints "105" for the year 2005, not "05", which I
expected. $yyyy is correct, it prints 2005.
If line 173,
// vals[m_yy + 1] = details.tm_year;
is changed to
// vals[m_yy + 1] = details.tm_year % 100;
it appears to work... although I only tested with today's date.