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=8014>. 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=8014 Apache cannot handle NTFS Junctions (Symlinks) [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED ------- Additional Comments From [EMAIL PROTECTED] 2003-03-28 13:02 ------- I'm not 100% this fixes the issue mentioned at http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8014 though I tried to reproduce the issue as I understood it. If one of the bug submitters could test it that would be great. Bill, if you could verify that this change is reasonable I would appreciate it, the 'wanted' thing is a little vague to me. --- filestat.c.orig Fri Mar 7 14:21:29 2003 +++ filestat.c Fri Mar 28 07:16:02 2003 @@ -363,7 +363,8 @@ finfo->size = 0x7fffffff; #endif - if (wininfo->dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { + if (wanted & APR_FINFO_LINK && + wininfo->dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { finfo->filetype = APR_LNK; } else if (wininfo->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { /kristofer --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
