diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2007-12-16 03:55:56 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2007-12-16 03:55:56 +0100 |
commit | 6b43dd46d96b452d41b6b2581414ffdeb2c32335 (patch) | |
tree | 9aac3465cdaabdcf4f60a93c95b7a848c211dcfe | |
parent | 5b9847d174938e61a76bb19da33ec28f2ca3b931 (diff) |
fixed gender output
woho, last fixme removed \o/
-rw-r--r-- | skype/skype.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/skype/skype.c b/skype/skype.c index 9f1ee607..f83d6d1d 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -391,7 +391,9 @@ static gboolean skype_read_callback( gpointer data, gint fd, b_input_condition c { if(strlen(sd->info_sex)) { - // FIXME: UNKNOWN -> Unknown + char *iptr = sd->info_sex; + while(*iptr++) + *iptr = tolower(*iptr); g_string_append_printf(st, "Gender: %s\n", sd->info_sex); } g_free(sd->info_sex); |