Add parens for clarity.

This commit is contained in:
brectanus 2008-01-22 06:53:30 +00:00
parent 18e9ef0808
commit 85e0b4d969

View File

@ -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;
}