X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fdtime.c;h=2f8e5dc2dd99b32e132cb100b874acb8dedc6755;hb=bcee4360d0113d2cbc71c9b0d13495327894e454;hp=738ffd59728f5d4696322f36d81f1225512d52eb;hpb=2e5668919988fce4e523cbf2294698841b1106a0;p=mmh diff --git a/sbr/dtime.c b/sbr/dtime.c index 738ffd5..2f8e5dc 100644 --- a/sbr/dtime.c +++ b/sbr/dtime.c @@ -90,10 +90,7 @@ dlocaltime(time_t *clock) tw.tw_mday = tm->tm_mday; tw.tw_mon = tm->tm_mon; - /* - * tm_year is always "year - 1900". - * So we correct for this. - */ + /* tm_year is always "year - 1900". So we correct for this. */ tw.tw_year = tm->tm_year + 1900; tw.tw_wday = tm->tm_wday; tw.tw_yday = tm->tm_yday; @@ -145,10 +142,7 @@ dgmtime(time_t *clock) tw.tw_mday = tm->tm_mday; tw.tw_mon = tm->tm_mon; - /* - * tm_year is always "year - 1900" - * So we correct for this. - */ + /* tm_year is always "year - 1900". So we correct for this. */ tw.tw_year = tm->tm_year + 1900; tw.tw_wday = tm->tm_wday; tw.tw_yday = tm->tm_yday;