--- 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<br>", _("Mobile Phone"), info->mobile); - oscar_string_append(str, "\n<br>", _("Gender"), info->gender == 0 ? _("Not specified") : - info->gender == 1 ? _("Female") : _("Male")); + if (info->gender != 0) + oscar_string_append(str, "\n<br>", _("Gender"), info->gender == 1 ? _("Female") : _("Male")); if (info->birthyear || info->birthmonth || info->birthday) { char date[30]; struct tm tm;