* Fix cosmetic spelling error.

This commit is contained in:
Justin Maggard 2010-07-20 17:06:07 +00:00
parent 4fc8e2382f
commit 431d354700

View File

@ -855,7 +855,7 @@ Process_upnphttp(struct upnphttp * h)
}
else if(n==0)
{
DPRINTF(E_WARN, L_HTTP, "HTTP Connection closed inexpectedly\n");
DPRINTF(E_WARN, L_HTTP, "HTTP Connection closed unexpectedly\n");
h->state = 100;
}
else
@ -882,12 +882,12 @@ Process_upnphttp(struct upnphttp * h)
n = recv(h->socket, buf, 2048, 0);
if(n<0)
{
DPRINTF(E_ERROR, L_HTTP, "recv (state1): %s\n", strerror(errno));
DPRINTF(E_ERROR, L_HTTP, "recv (state%d): %s\n", h->state, strerror(errno));
h->state = 100;
}
else if(n==0)
{
DPRINTF(E_WARN, L_HTTP, "HTTP Connection closed inexpectedly\n");
DPRINTF(E_WARN, L_HTTP, "HTTP Connection closed unexpectedly\n");
h->state = 100;
}
else