From 77541f750091a99183257e7c8b60a5e1ac409812 Mon Sep 17 00:00:00 2001 From: Jacquin Antoine Date: Sat, 28 Feb 2026 20:33:42 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20corriger=20la=20d=C3=A9claration=20de=20?= =?UTF-8?q?reqin=5Flog=5Fmodule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: aider (openrouter/openai/gpt-5.3-codex) --- src/mod_reqin_log.c | 2 +- src/mod_reqin_log.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod_reqin_log.c b/src/mod_reqin_log.c index c0958ed..03d67d6 100644 --- a/src/mod_reqin_log.c +++ b/src/mod_reqin_log.c @@ -114,7 +114,7 @@ static const command_rec reqin_log_cmds[] = { }; /* Module definition */ -module AP_MODULE_DECLARE_DATA reqin_log_module = { +AP_MODULE_DECLARE_DATA struct module_struct reqin_log_module = { STANDARD20_MODULE_STUFF, NULL, /* per-directory config creator */ NULL, /* dir config merger */ diff --git a/src/mod_reqin_log.h b/src/mod_reqin_log.h index 366ba7e..4bbf00d 100644 --- a/src/mod_reqin_log.h +++ b/src/mod_reqin_log.h @@ -32,6 +32,6 @@ typedef struct { } reqin_log_config_t; /* External module declaration */ -extern module AP_MODULE_DECLARE_DATA reqin_log_module; +extern AP_MODULE_DECLARE_DATA struct module_struct reqin_log_module; #endif /* MOD_REQIN_LOG_H */