1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

change various strings from char * to const char *

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1351017 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Fritsch
2012-06-16 22:45:33 +00:00
parent cb0cf2cf81
commit cbb93c651b
3 changed files with 9 additions and 7 deletions

View File

@@ -113,7 +113,7 @@ typedef struct
apr_hash_t *hooks; /* <wombat_hook_info> */
/* the actual directory being configured */
char *dir;
const char *dir;
/* Whether Lua scripts in a sub-dir are run before parents */
ap_lua_inherit_t inherit;
@@ -131,7 +131,7 @@ typedef struct
typedef struct
{
char *function_name;
const char *function_name;
ap_lua_vm_spec *spec;
} mapped_request_details;
@@ -144,7 +144,7 @@ typedef struct
typedef struct
{
lua_State *L;
char *function;
const char *function;
} ap_lua_filter_ctx;
extern module AP_MODULE_DECLARE_DATA lua_module;