Missing ';'

This commit is contained in:
nohar 2007-02-08 23:03:49 +00:00
parent 40b9b085c1
commit 052ec2cfbb
1 changed files with 1 additions and 1 deletions

View File

@ -870,7 +870,7 @@ static void create_socket(char *dsthostname, char *dstport, char *srchostname,
cdata = (struct connecting_data *)
malloc(sizeof(struct connecting_data));
if (!cdata)
fatal("Out of memory.")
fatal("Out of memory.");
cdata->dst = cdata->src = cdata->cur = NULL;
err = getaddrinfo(dsthostname, dstport, &hint, &cdata->dst);