Mailing List Archive

cvs commit: apache-1.3/src/ap ap_snprintf.c
rse 98/05/07 02:39:43

Modified: src/ap ap_snprintf.c
Log:
Fix Martin's comitted "s != S_NULL & s != char_buf" to "s != S_NULL && s !=
char_buf" which is what he wanted to use but not typed.

Revision Changes Path
1.22 +1 -1 apache-1.3/src/ap/ap_snprintf.c

Index: ap_snprintf.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_snprintf.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ap_snprintf.c 1998/05/07 07:47:33 1.21
+++ ap_snprintf.c 1998/05/07 09:39:42 1.22
@@ -940,7 +940,7 @@
break;
}

- if (prefix_char != NUL && s != S_NULL & s != char_buf) {
+ if (prefix_char != NUL && s != S_NULL && s != char_buf) {
*--s = prefix_char;
s_len++;
}