DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24417>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24417 [PATCH] rotatelogs with local time (including DST) functionality ------- Additional Comments From [EMAIL PROTECTED] 2003-11-21 22:06 ------- Chris, I'm not sure why you moved the modification in the code of rotatelogs to the place you did. Are you sure this will work, especially on days when DST is switched on or off? I don't have the opportunity to test this right now, but it's obviously important that the behavior is right on these days. Anyway, the following is obviously wrong in your version of the patch: + if (strcmp(argv[3], "loc") == 0) { + use_local = 0; should be + if (strcmp(argv[3], "loc") == 0) { + use_local = 1; or is there something I just didn't get? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
