Changeset a4cdf43


Ignore:
Timestamp:
2010-05-01T14:19:09Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bce78c8
Parents:
2272cb3
Message:

Same fix like 566 in mainline: tm_mon + 1 to get the right month in
timestamps.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_util.c

    r2272cb3 ra4cdf43  
    111111                return g_strdup_printf( "\x02[\x02\x02\x02%04d-%02d-%02d "
    112112                                        "%02d:%02d:%02d\x02]\x02 ",
    113                                         msg.tm_year + 1900, msg.tm_mon, msg.tm_mday,
     113                                        msg.tm_year + 1900, msg.tm_mon + 1, msg.tm_mday,
    114114                                        msg.tm_hour, msg.tm_min, msg.tm_sec );
    115115}
Note: See TracChangeset for help on using the changeset viewer.