* Missed a newline on an error message.

This commit is contained in:
Justin Maggard 2010-10-05 20:46:00 +00:00
parent 786d86c366
commit 4ecfe18bb8

View File

@ -1034,7 +1034,7 @@ SendResp_upnphttp(struct upnphttp * h)
n = send(h->socket, h->res_buf, h->res_buflen, 0);
if(n<0)
{
DPRINTF(E_ERROR, L_HTTP, "send(res_buf): %s", strerror(errno));
DPRINTF(E_ERROR, L_HTTP, "send(res_buf): %s\n", strerror(errno));
}
else if(n < h->res_buflen)
{