aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputStream_http.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/inputStream_http.c')
-rw-r--r--src/inputStream_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index c2392d703..57d7e8474 100644
--- a/src/inputStream_http.c
+++ b/src/inputStream_http.c
@@ -342,7 +342,7 @@ static int parseUrl(InputStreamHTTPData * data, char * url) {
data->port = malloc(len+1);
strncpy(data->port, colon+1, len);
data->port[len] = '\0';
- printf("Port: %s\n", data->port);
+ DEBUG(__FILE__ ": Port: %s\n", data->port);
}
else {
data->port = strdup("80");