Changeset 3edaed9 for protocols/oscar
- Timestamp:
- 2006-04-25T17:57:23Z (19 years ago)
- Branches:
- master
- Children:
- 1be54a9
- Parents:
- 85616c3 (diff), 79c6f9f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
r85616c3 r3edaed9 2058 2058 name = g_strdup(normalize(curitem->name)); 2059 2059 gc->permit = g_slist_append(gc->permit, name); 2060 build_allow_list();2061 2060 tmp++; 2062 2061 } … … 2072 2071 name = g_strdup(normalize(curitem->name)); 2073 2072 gc->deny = g_slist_append(gc->deny, name); 2074 build_block_list();2075 2073 tmp++; 2076 2074 } … … 2278 2276 tm.tm_mday = (int)info->birthday; 2279 2277 tm.tm_mon = (int)info->birthmonth-1; 2280 tm.tm_year = (int)info->birthyear -1900;2278 tm.tm_year = (int)info->birthyear%100; 2281 2279 strftime(date, sizeof(date), "%Y-%m-%d", &tm); 2282 2280 info_string_append(str, "\n", _("Birthday"), date);
Note: See TracChangeset
for help on using the changeset viewer.