From: Adam Dickmeiss Date: Fri, 20 Nov 2009 12:49:25 +0000 (+0100) Subject: HTTP response error, doctype + YAZ URL X-Git-Tag: v3.0.51~13 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=fa4ce7352686da3893b47fde6e295cd4f558f014 HTTP response error, doctype + YAZ URL --- diff --git a/src/http.c b/src/http.c index 1c1d9f0..1eaad64 100644 --- a/src/http.c +++ b/src/http.c @@ -333,20 +333,21 @@ Z_GDU *z_get_HTTP_Response(ODR o, int code) if (code != 200) { hres->content_buf = (char*) odr_malloc(o, 400); - sprintf (hres->content_buf, - "\n" - "\n" - " \n" - " YAZ " YAZ_VERSION "\n" - " \n" - " \n" - "

YAZ " - YAZ_VERSION "

\n" - "

Error: %d

\n" - "

Description: %.50s

\n" - " \n" - "\n", - code, z_HTTP_errmsg(code)); + sprintf(hres->content_buf, + "\n" + "\n" + " \n" + " YAZ " YAZ_VERSION "\n" + " \n" + " \n" + "

YAZ " + YAZ_VERSION "

\n" + "

Error: %d

\n" + "

Description: %.50s

\n" + " \n" + "\n", + code, z_HTTP_errmsg(code)); hres->content_len = strlen(hres->content_buf); z_HTTP_header_add(o, &hres->headers, "Content-Type", "text/html"); }