From eb97b8c045ad449643a88255290a709ec02432fd Mon Sep 17 00:00:00 2001 From: Markus Beth Date: Tue, 3 Mar 2020 22:19:19 +0100 Subject: [PATCH] fix the interpretation of MonoCheckHiddenFiles Setting 'MonoCheckHiddenFiles' to 'false' should result in the argument '--no-hidden' for the mod-mono-server. --- src/mod_mono.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod_mono.c b/src/mod_mono.c index 20d7a9d..4d99fea 100644 --- a/src/mod_mono.c +++ b/src/mod_mono.c @@ -1760,7 +1760,7 @@ fork_mod_mono_server (apr_pool_t *pool, xsp_data *config) } if (config->hidden != NULL) { - if (strcasecmp (config->hidden, "false")) + if (!strcasecmp (config->hidden, "false")) argv [argi++] = "--no-hidden"; }