Mercurial > pidgin
diff src/protocols/oscar/im.c @ 7495:d620bfb81384
[gaim-migrate @ 8108]
Thanks to evands for noticing this
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Thu, 13 Nov 2003 07:53:49 +0000 |
| parents | 83e8faa7f6d5 |
| children | 9790cda80d52 |
line wrap: on
line diff
--- 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]); }
