- Timestamp:
- 2009-02-13T22:36:27Z (16 years ago)
- Branches:
- master
- Children:
- 129a6c5
- Parents:
- 3e8a4ea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
r3e8a4ea rd7938f9 320 320 } 321 321 } else if (!strncmp(ptr, "FULLNAME ", 9)) 322 sd->info_fullname = g_strdup _printf("%s",ptr + 9);322 sd->info_fullname = g_strdup(ptr + 9); 323 323 else if (!strncmp(ptr, "PHONE_HOME ", 11)) 324 sd->info_phonehome = g_strdup _printf("%s",ptr + 11);324 sd->info_phonehome = g_strdup(ptr + 11); 325 325 else if (!strncmp(ptr, "PHONE_OFFICE ", 13)) 326 sd->info_phoneoffice = g_strdup _printf("%s",ptr + 13);326 sd->info_phoneoffice = g_strdup(ptr + 13); 327 327 else if (!strncmp(ptr, "PHONE_MOBILE ", 13)) 328 sd->info_phonemobile = g_strdup _printf("%s",ptr + 13);328 sd->info_phonemobile = g_strdup(ptr + 13); 329 329 else if (!strncmp(ptr, "NROF_AUTHED_BUDDIES ", 20)) 330 sd->info_nrbuddies = g_strdup _printf("%s",ptr + 20);330 sd->info_nrbuddies = g_strdup(ptr + 20); 331 331 else if (!strncmp(ptr, "TIMEZONE ", 9)) 332 sd->info_tz = g_strdup _printf("%s",ptr + 9);332 sd->info_tz = g_strdup(ptr + 9); 333 333 else if (!strncmp(ptr, "LASTONLINETIMESTAMP ", 20)) 334 sd->info_seen = g_strdup _printf("%s",ptr + 20);334 sd->info_seen = g_strdup(ptr + 20); 335 335 else if (!strncmp(ptr, "BIRTHDAY ", 9)) 336 sd->info_birthday = g_strdup _printf("%s",ptr + 9);336 sd->info_birthday = g_strdup(ptr + 9); 337 337 else if (!strncmp(ptr, "SEX ", 4)) 338 sd->info_sex = g_strdup _printf("%s",ptr + 4);338 sd->info_sex = g_strdup(ptr + 4); 339 339 else if (!strncmp(ptr, "LANGUAGE ", 9)) 340 sd->info_language = g_strdup _printf("%s",ptr + 9);340 sd->info_language = g_strdup(ptr + 9); 341 341 else if (!strncmp(ptr, "COUNTRY ", 8)) 342 sd->info_country = g_strdup _printf("%s",ptr + 8);342 sd->info_country = g_strdup(ptr + 8); 343 343 else if (!strncmp(ptr, "PROVINCE ", 9)) 344 sd->info_province = g_strdup _printf("%s",ptr + 9);344 sd->info_province = g_strdup(ptr + 9); 345 345 else if (!strncmp(ptr, "CITY ", 5)) 346 sd->info_city = g_strdup _printf("%s",ptr + 5);346 sd->info_city = g_strdup(ptr + 5); 347 347 else if (!strncmp(ptr, "HOMEPAGE ", 9)) 348 sd->info_homepage = g_strdup _printf("%s",ptr + 9);348 sd->info_homepage = g_strdup(ptr + 9); 349 349 else if (!strncmp(ptr, "ABOUT ", 6)) { 350 sd->info_about = g_strdup _printf("%s",ptr + 6);350 sd->info_about = g_strdup(ptr + 6); 351 351 352 352 GString *st = g_string_new("Contact Information\n");
Note: See TracChangeset
for help on using the changeset viewer.