ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/thttpd/libhttpd.c
(Generate patch)

Comparing thttpd/libhttpd.c (file contents):
Revision 1.1.4.3 by root, Fri Jun 29 13:17:52 2001 UTC vs.
Revision 1.1.4.5 by root, Mon Jul 2 18:52:37 2001 UTC

823 } 823 }
824 824
825void 825void
826httpd_send_err_blocked( httpd_conn* hc ) 826httpd_send_err_blocked( httpd_conn* hc )
827 { 827 {
828 char *protocol = hc->protocol;
829
828#ifdef ERR_DIR 830#ifdef ERR_DIR
829
830 char filename[1000]; 831 char filename[1000];
832#endif
831 833
834 hc->protocol = "HTTP/1.0";
835
836#ifdef ERR_DIR
832 /* Try virtual host error page. */ 837 /* Try virtual host error page. */
833 if ( hc->hs->vhost && hc->hostdir[0] != '\0' ) 838 if ( hc->hs->vhost && hc->hostdir[0] != '\0' )
834 { 839 {
835 (void) my_snprintf( filename, sizeof(filename), 840 (void) my_snprintf( filename, sizeof(filename),
836 "%s/%s/err403blocked.html", hc->hostdir, ERR_DIR ); 841 "%s/%s/err403blocked.html", hc->hostdir, ERR_DIR );
850#else /* ERR_DIR */ 855#else /* ERR_DIR */
851 856
852 send_response( hc, 403, err403title, "", err403form, "" ); 857 send_response( hc, 403, err403title, "", err403form, "" );
853 858
854#endif /* ERR_DIR */ 859#endif /* ERR_DIR */
860 hc->protocol = protocol;
855 } 861 }
856 862
857#ifdef ERR_DIR 863#ifdef ERR_DIR
858static int 864static int
859send_err_file( httpd_conn* hc, int status, char* title, char* extraheads, char* filename ) 865send_err_file( httpd_conn* hc, int status, char* title, char* extraheads, char* filename )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines