fix: corriger la déclaration de reqin_log_module pour Apache

Co-authored-by: aider (openrouter/openai/gpt-5.3-codex) <aider@aider.chat>
This commit is contained in:
Jacquin Antoine
2026-02-28 20:35:18 +01:00
parent 77541f7500
commit ce1692bfba
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ static const command_rec reqin_log_cmds[] = {
}; };
/* Module definition */ /* Module definition */
AP_MODULE_DECLARE_DATA struct module_struct reqin_log_module = { module AP_MODULE_DECLARE_DATA reqin_log_module = {
STANDARD20_MODULE_STUFF, STANDARD20_MODULE_STUFF,
NULL, /* per-directory config creator */ NULL, /* per-directory config creator */
NULL, /* dir config merger */ NULL, /* dir config merger */

View File

@ -32,6 +32,6 @@ typedef struct {
} reqin_log_config_t; } reqin_log_config_t;
/* External module declaration */ /* External module declaration */
extern AP_MODULE_DECLARE_DATA struct module_struct reqin_log_module; extern module AP_MODULE_DECLARE_DATA reqin_log_module;
#endif /* MOD_REQIN_LOG_H */ #endif /* MOD_REQIN_LOG_H */