From 85e0b4d9699367d4f4dd9b332adf62bbcb8061ff Mon Sep 17 00:00:00 2001 From: brectanus Date: Tue, 22 Jan 2008 06:53:30 +0000 Subject: [PATCH] Add parens for clarity. --- apache2/msc_logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/msc_logging.c b/apache2/msc_logging.c index 1089d624..bcc27a22 100644 --- a/apache2/msc_logging.c +++ b/apache2/msc_logging.c @@ -235,7 +235,7 @@ char *construct_log_vcombinedus_limited(modsec_rec *msr, int _limit, int *was_li int is_valid_parts_specification(char *p) { char c, *t = p; - while((c = *t++) != '\0') { + while((c = *(t++)) != '\0') { if ((c != AUDITLOG_PART_ENDMARKER)&&((c < AUDITLOG_PART_FIRST)||(c > AUDITLOG_PART_LAST))) { return 0; }