From 6fd49579e866d9a6060620bc60dae4352b151cf9 Mon Sep 17 00:00:00 2001 From: leitner Date: Mon, 23 Jun 2008 07:04:09 +0000 Subject: [PATCH] forgot to add message in httperror --- test/httpd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/httpd.c b/test/httpd.c index d113b0b..13e5f7d 100644 --- a/test/httpd.c +++ b/test/httpd.c @@ -65,6 +65,7 @@ void httperror(struct http_data* r,const char* title,const char* message) { c+=fmt_str(c,"\r\n\r\n"); c+=fmt_str(c,title+4); c+=fmt_str(c,"\n"); + c+=fmt_str(c,message); r->hlen=c - r->hdrbuf; } iob_addbuf(&r->iob,r->hdrbuf,r->hlen);