comparison src/protocols/yahoo/yahoo.c @ 8617:9bd849b376b4

[gaim-migrate @ 9368] really that wasn't a fix, this is ... thanks shx committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Thu, 08 Apr 2004 04:36:48 +0000
parents aa815d1a996d
children e67f0f3aebb8
comparison
equal deleted inserted replaced
8616:aa815d1a996d 8617:9bd849b376b4
909 909
910 for (p = text; p < end; p++, n++) { 910 for (p = text; p < end; p++, n++) {
911 if (*p == '\\') { 911 if (*p == '\\') {
912 sscanf(p + 1, "%3o%n\n", &i, &k); 912 sscanf(p + 1, "%3o%n\n", &i, &k);
913 *n = i; 913 *n = i;
914 p += k - 1; 914 p += k;
915 } 915 }
916 else 916 else
917 *n = *p; 917 *n = *p;
918 } 918 }
919 919