Module Name: src
Committed By: mrg
Date: Wed Sep 8 00:47:45 UTC 2010
Modified Files:
src/libexec/httpd: bozohttpd.h
Log Message:
fix a compile error if NO_DIRINDEX_SUPPORT is defined. from rudolf.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/libexec/httpd/bozohttpd.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/httpd/bozohttpd.h
diff -u src/libexec/httpd/bozohttpd.h:1.14 src/libexec/httpd/bozohttpd.h:1.15
--- src/libexec/httpd/bozohttpd.h:1.14 Thu Jun 17 19:43:30 2010
+++ src/libexec/httpd/bozohttpd.h Wed Sep 8 00:47:44 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: bozohttpd.h,v 1.14 2010/06/17 19:43:30 mrg Exp $ */
+/* $NetBSD: bozohttpd.h,v 1.15 2010/09/08 00:47:44 mrg Exp $ */
/* $eterna: bozohttpd.h,v 1.35 2010/06/17 00:49:30 mrg Exp $ */
@@ -256,7 +256,7 @@
/* dir-index-bozo.c */
#ifdef NO_DIRINDEX_SUPPORT
-#define bozo_dir_index(a, b, c, d) 0
+#define bozo_dir_index(a, b, c) 0
#else
int bozo_dir_index(bozo_httpreq_t *, const char *, int);
#endif /* NO_DIRINDEX_SUPPORT */