Changeset 5aa9551e for protocols/oscar


Ignore:
Timestamp:
2006-04-17T08:09:55Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
6e62132
Parents:
4d89886
Message:

Y2K! ;-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    r4d89886 r5aa9551e  
    22762276                tm.tm_mday = (int)info->birthday;
    22772277                tm.tm_mon = (int)info->birthmonth-1;
    2278                 tm.tm_year = (int)info->birthyear-1900;
     2278                tm.tm_year = (int)info->birthyear%100;
    22792279                strftime(date, sizeof(date), "%Y-%m-%d", &tm);
    22802280                info_string_append(str, "\n", _("Birthday"), date);
Note: See TracChangeset for help on using the changeset viewer.