Changeset e900442 for protocols/oscar


Ignore:
Timestamp:
2007-07-05T23:39:47Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c9c7ca7
Parents:
9da0bbf (diff), 19a8088 (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:

Merging from devel. Added documentation for the join_chat command, adding
a debian/ tree and a merge from Jelmer (mainly unittest stuff).

Location:
protocols/oscar
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/Makefile

    r9da0bbf re900442  
    1818all: oscar_mod.o
    1919check: all
     20lcov:
    2021gcov:
    2122        gcov *.c
  • protocols/oscar/oscar.c

    r9da0bbf re900442  
    22562256        }
    22572257        info_string_append(str, "\n", _("Mobile Phone"), info->mobile);
    2258         info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown"));
     2258        if (info->gender != 0)
     2259                info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male"));
    22592260        if (info->birthyear || info->birthmonth || info->birthday) {
    22602261                char date[30];
Note: See TracChangeset for help on using the changeset viewer.