diff options
| author | mrg <mrg@NetBSD.org> | 2009-04-18 07:37:08 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 2009-04-18 07:37:08 +0000 |
| commit | ca01226b2044032c04e5a7bc18db47ff1fda681a (patch) | |
| tree | 3f2fce23b8c9bbc4f91d7b6b9fae8d49ac3830a1 /libexec/httpd | |
| parent | 033876329d97a26f1ff57d15bdbb71654eb0e35f (diff) | |
de-const some variables passed to free().
Diffstat (limited to 'libexec/httpd')
| -rw-r--r-- | libexec/httpd/bozohttpd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/httpd/bozohttpd.h b/libexec/httpd/bozohttpd.h index 2feeb7da089..03cdbdf6c6f 100644 --- a/libexec/httpd/bozohttpd.h +++ b/libexec/httpd/bozohttpd.h @@ -1,4 +1,4 @@ -/* $NetBSD: bozohttpd.h,v 1.8 2009/04/18 07:28:24 mrg Exp $ */ +/* $NetBSD: bozohttpd.h,v 1.9 2009/04/18 07:37:08 mrg Exp $ */ /* $eterna: bozohttpd.h,v 1.25 2009/04/18 05:36:04 mrg Exp $ */ @@ -72,9 +72,9 @@ typedef struct { /*const*/ char *hr_remoteaddr; /*const*/ char *hr_serverport; #ifdef DO_HTPASSWD - const char *hr_authrealm; - const char *hr_authuser; - const char *hr_authpass; + /*const*/ char *hr_authrealm; + /*const*/ char *hr_authuser; + /*const*/ char *hr_authpass; #endif SIMPLEQ_HEAD(, headers) hr_headers; int hr_nheaders; |
