From b6446dc8360c242c450d92ed2e14e95a3ba4e0d8 Mon Sep 17 00:00:00 2001 From: brectanus Date: Wed, 9 Jan 2008 01:02:51 +0000 Subject: [PATCH] Fixed an old bug in ctl:auditLogParts that was fixed in 2.1.x, but not trunk. --- apache2/re_actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/re_actions.c b/apache2/re_actions.c index b826c642..9001708e 100644 --- a/apache2/re_actions.c +++ b/apache2/re_actions.c @@ -813,7 +813,7 @@ static apr_status_t msre_action_ctl_execute(modsec_rec *msr, apr_pool_t *mptmp, if (*s != c) { *d++ = *s++; } else { - (*s)++; /* parens quiet compiler warning */ + s++; } } *d = '\0';