* Fix cosmetic spelling error.
This commit is contained in:
parent
4fc8e2382f
commit
431d354700
@ -855,7 +855,7 @@ Process_upnphttp(struct upnphttp * h)
|
|||||||
}
|
}
|
||||||
else if(n==0)
|
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;
|
h->state = 100;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -882,12 +882,12 @@ Process_upnphttp(struct upnphttp * h)
|
|||||||
n = recv(h->socket, buf, 2048, 0);
|
n = recv(h->socket, buf, 2048, 0);
|
||||||
if(n<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;
|
h->state = 100;
|
||||||
}
|
}
|
||||||
else if(n==0)
|
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;
|
h->state = 100;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user