From 4ecfe18bb80e63ad9b5a8e5b2654eb74b5dd10b2 Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Tue, 5 Oct 2010 20:46:00 +0000 Subject: [PATCH] * Missed a newline on an error message. --- upnphttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upnphttp.c b/upnphttp.c index d48e8c1..054d53f 100644 --- a/upnphttp.c +++ b/upnphttp.c @@ -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) {