authd/dns: remove magic number

This commit is contained in:
Elizabeth Myers 2016-03-28 17:50:45 -05:00
parent 835d456c64
commit 1096025891

View file

@ -119,7 +119,7 @@ static void
handle_lookup_ip_reply(void *data, struct DNSReply *reply)
{
struct dns_query *query = data;
char ip[64] = "*";
char ip[HOSTIPLEN] = "*";
if(query == NULL)
/* Shouldn't happen */