# HG changeset patch # User Mark Doliner # Date 1095133896 0 # Node ID 00a7ccf8ccd7fa80c323e5a8d2e7b3679839fb98 # Parent 2f41f462ab4e812a33d7c6ba8b9f52218effbc88 [gaim-migrate @ 10954] Don't show "Not Specified" for ICQ info when the gender isn't specified. oannu@sf pointed out that this is dumb. committer: Tailor Script diff -r 2f41f462ab4e -r 00a7ccf8ccd7 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Sep 12 22:33:55 2004 +0000 +++ b/src/protocols/oscar/oscar.c Tue Sep 14 03:51:36 2004 +0000 @@ -5051,8 +5051,8 @@ } } oscar_string_append(str, "\n
", _("Mobile Phone"), info->mobile); - oscar_string_append(str, "\n
", _("Gender"), info->gender == 0 ? _("Not specified") : - info->gender == 1 ? _("Female") : _("Male")); + if (info->gender != 0) + oscar_string_append(str, "\n
", _("Gender"), info->gender == 1 ? _("Female") : _("Male")); if (info->birthyear || info->birthmonth || info->birthday) { char date[30]; struct tm tm;