diff options
author | Jean-Frederic Clere <jfclere@apache.org> | 2005-01-04 10:58:01 +0100 |
---|---|---|
committer | Jean-Frederic Clere <jfclere@apache.org> | 2005-01-04 10:58:01 +0100 |
commit | af7e1482aa527150ed6d3a3d359c0613d254aaad (patch) | |
tree | cc1e215af1ccbd4987f8edfce80b8864ed7b317f /modules/cache | |
parent | update transformation (diff) | |
download | apache2-af7e1482aa527150ed6d3a3d359c0613d254aaad.tar.xz apache2-af7e1482aa527150ed6d3a3d359c0613d254aaad.zip |
Add including of util_charset.h otherwise ap_hdrs_from_ascii is not defined.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@124080 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/mod_disk_cache.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/cache/mod_disk_cache.c b/modules/cache/mod_disk_cache.c index 67ae80d434..db2717dd05 100644 --- a/modules/cache/mod_disk_cache.c +++ b/modules/cache/mod_disk_cache.c @@ -20,6 +20,10 @@ #include "util_filter.h" #include "util_script.h" +#if APR_CHARSET_EBCDIC +#include "util_charset.h" +#endif + #if APR_HAVE_UNISTD_H #include <unistd.h> /* needed for unlink/link */ #endif |