src/protocols/oscar/oscar.c

changeset 10022
b5bb3bdd4d1a
parent 10009
8a4fcc043f47
child 10039
cb0a6cbd0023
--- 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;

mercurial