Ignore:
Timestamp:
2006-04-25T17:57:23Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
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.
Message:

Misc. things (mainly code cleanup, better quoting for root commands)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    r85616c3 r3edaed9  
    20582058                                                name = g_strdup(normalize(curitem->name));
    20592059                                                gc->permit = g_slist_append(gc->permit, name);
    2060                                                 build_allow_list();
    20612060                                                tmp++;
    20622061                                        }
     
    20722071                                                name = g_strdup(normalize(curitem->name));
    20732072                                                gc->deny = g_slist_append(gc->deny, name);
    2074                                                 build_block_list();
    20752073                                                tmp++;
    20762074                                        }
     
    22782276                tm.tm_mday = (int)info->birthday;
    22792277                tm.tm_mon = (int)info->birthmonth-1;
    2280                 tm.tm_year = (int)info->birthyear-1900;
     2278                tm.tm_year = (int)info->birthyear%100;
    22812279                strftime(date, sizeof(date), "%Y-%m-%d", &tm);
    22822280                info_string_append(str, "\n", _("Birthday"), date);
Note: See TracChangeset for help on using the changeset viewer.