X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fhttp.c;h=61d3fd9ec4279235c2d1ea6e91e7fccecb84cde5;hb=c7b8fb38d1cd3568301aabac00c5627bd6f510ca;hp=ad353b6f4be19f90259936717d785a6f69197e57;hpb=7be156471e84d49c55ef3c139e3372c68cd8fc00;p=pazpar2-moved-to-github.git diff --git a/src/http.c b/src/http.c index ad353b6..61d3fd9 100644 --- a/src/http.c +++ b/src/http.c @@ -1,5 +1,5 @@ /* - * $Id: http.c,v 1.18 2007-03-31 19:55:25 marc Exp $ + * $Id: http.c,v 1.19 2007-03-31 20:06:18 marc Exp $ */ #include @@ -974,7 +974,7 @@ void http_init(const char *addr) const char *pp; int port; - yaz_log(YLOG_LOG, "HTTP listener is %s", addr); + yaz_log(YLOG_LOG, "HTTP listener %s", addr); memset(&myaddr, 0, sizeof myaddr); myaddr.sin_family = AF_INET; @@ -1031,7 +1031,7 @@ void http_set_proxyaddr(char *host, char *base_url) strcpy(proxy_url, host); p = strchr(host, ':'); yaz_log(YLOG_DEBUG, "Proxying for %s", host); - yaz_log(YLOG_LOG, "HTTP backend %s", proxy_url); + yaz_log(YLOG_LOG, "HTTP backend %s", proxy_url); if (p) { port = atoi(p + 1); *p = '\0';