Use %u instead of %d.

This commit is contained in:
William Pitcock 2010-12-04 23:13:35 -06:00
parent b67bc679f3
commit fa9fb0d66b
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ static void initiate_blacklist_dnsquery(struct Blacklist *blptr, struct Client *
ip = (uint8_t *)&((struct sockaddr_in *)&client_p->localClient->ip)->sin_addr.s_addr;
/* becomes 2.0.0.127.torbl.ahbl.org or whatever */
rb_snprintf(buf, sizeof buf, "%d.%d.%d.%d.%s",
rb_snprintf(buf, sizeof buf, "%u.%u.%u.%u.%s",
(unsigned int) ip[3],
(unsigned int) ip[2],
(unsigned int) ip[1],