From: Sebastian Hammer Date: Fri, 12 Jan 2007 23:41:35 +0000 (+0000) Subject: Changed enclosing tag for info command response to X-Git-Tag: stable.27032007~113 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=bdde87cfaf2307da5d3f6fcb911f621a9df114fe;p=pazpar2-moved-to-github.git Changed enclosing tag for info command response to --- diff --git a/src/http_command.c b/src/http_command.c index 5d22900..8483705 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -1,5 +1,5 @@ /* - * $Id: http_command.c,v 1.20 2007-01-12 23:24:05 adam Exp $ + * $Id: http_command.c,v 1.21 2007-01-12 23:41:35 quinn Exp $ */ #include @@ -506,7 +506,7 @@ static void cmd_info(struct http_channel *c) struct http_response *rs = c->response; wrbuf_rewind(c->wrbuf); - wrbuf_puts(c->wrbuf, "\n"); + wrbuf_puts(c->wrbuf, "\n"); wrbuf_printf(c->wrbuf, " \n"); wrbuf_printf(c->wrbuf, " %s\n", VERSION); @@ -515,7 +515,7 @@ static void cmd_info(struct http_channel *c) YAZ_VERSION, yaz_version_str); wrbuf_printf(c->wrbuf, " \n"); - wrbuf_puts(c->wrbuf, ""); + wrbuf_puts(c->wrbuf, ""); rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf)); http_send_response(c); }