manoj 98/11/05 13:39:47
Modified: src/os/win32 util_win32.c Log: Get rid of "%%" handling in strftime-adapter Revision Changes Path 1.29 +0 -5 apache-1.3/src/os/win32/util_win32.c Index: util_win32.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/os/win32/util_win32.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -u -r1.28 -r1.29 --- util_win32.c 1998/11/05 20:07:53 1.28 +++ util_win32.c 1998/11/05 21:39:46 1.29 @@ -519,11 +519,6 @@ j = (length_written == -1) ? max : (j + length_written); i += 2; break; - /* Handle "%%" to avoid dying on strftime(out, 600, 1200 "%"'s) */ - case '%': - new_format[j++] = '%'; - i += 2; - break; default: /* We know we can advance two characters forward here. */ new_format[j++] = format[i++];