# HG changeset patch # User Mark Doliner # Date 1068710029 0 # Node ID d620bfb813841966e5569532f35a622042e1fd3f # Parent 86fe50e88bcdeb7816c9d22938acdfff408993e7 [gaim-migrate @ 8108] Thanks to evands for noticing this committer: Tailor Script diff -r 86fe50e88bcd -r d620bfb81384 src/protocols/oscar/im.c --- a/src/protocols/oscar/im.c Thu Nov 13 07:33:39 2003 +0000 +++ b/src/protocols/oscar/im.c Thu Nov 13 07:53:49 2003 +0000 @@ -1696,7 +1696,7 @@ iptlv = aim_tlv_gettlv(list2, 0x0002, 1); if (iptlv->length == 4) - snprintf(proxyip, sizeof(proxyip), "%hhd.%hhd.%hhd.%hhd", + snprintf(proxyip, sizeof(proxyip), "%hhu.%hhu.%hhu.%hhu", iptlv->value[0], iptlv->value[1], iptlv->value[2], iptlv->value[3]); } @@ -1709,7 +1709,7 @@ iptlv = aim_tlv_gettlv(list2, 0x0003, 1); if (iptlv->length == 4) - snprintf(clientip, sizeof(clientip), "%hhd.%hhd.%hhd.%hhd", + snprintf(clientip, sizeof(clientip), "%hhu.%hhu.%hhu.%hhu", iptlv->value[0], iptlv->value[1], iptlv->value[2], iptlv->value[3]); } @@ -1724,7 +1724,7 @@ iptlv = aim_tlv_gettlv(list2, 0x0004, 1); if (iptlv->length == 4) - snprintf(verifiedip, sizeof(verifiedip), "%hhd.%hhd.%hhd.%hhd", + snprintf(verifiedip, sizeof(verifiedip), "%hhu.%hhu.%hhu.%hhu", iptlv->value[0], iptlv->value[1], iptlv->value[2], iptlv->value[3]); }