--- thttpd/libhttpd.c 2001/06/29 13:17:52 1.1.4.3 +++ thttpd/libhttpd.c 2001/07/02 18:50:02 1.1.4.4 @@ -825,6 +825,9 @@ void httpd_send_err_blocked( httpd_conn* hc ) { + char *protocol = hc->protocol; + + hc->protocol = "HTTP/1.0"; #ifdef ERR_DIR char filename[1000]; @@ -852,6 +855,7 @@ send_response( hc, 403, err403title, "", err403form, "" ); #endif /* ERR_DIR */ + hc->protocol = protocol; } #ifdef ERR_DIR