randy 99/08/08 11:18:42
Modified: src/ap ap_sha1.c
Log:
Fix a warning on Win32.
Revision Changes Path
1.6 +1 -1 apache-1.3/src/ap/ap_sha1.c
Index: ap_sha1.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/ap/ap_sha1.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ap_sha1.c 1999/08/08 17:58:34 1.5
+++ ap_sha1.c 1999/08/08 18:18:41 1.6
@@ -240,7 +240,7 @@
const unsigned char *buffer,
unsigned int count)
{
- int i;
+ unsigned int i;
if ((sha_info->count_lo + ((AP_LONG) count << 3)) < sha_info->count_lo) {
++sha_info->count_hi;