On versions of VMS beyond 8.2 with symbolic link support, with out this line, the real lstat() is attempted to be used instead of the special VMS one.

-John
[EMAIL PROTECTED]
Personal Opinion Only
--- vms/vmsish.h#12     Mon Oct 17 17:00:53 2005
+++ vms/vmsish.h        Mon Oct 17 15:34:10 2005
@@ -592,6 +592,9 @@
 /* Use our own stat() clones, which handle Unix-style directory names */
 #define Stat(name,bufptr) flex_stat(name,bufptr)
 #define Fstat(fd,bufptr) Perl_flex_fstat(aTHX_ fd,bufptr)
+#ifndef DONT_MASK_RTL_CALLS
+#define lstat(name, bufptr) Perl_flex_lstat(name, bufptr)
+#endif
 
 /* Setup for the dirent routines:
  * opendir(), closedir(), readdir(), seekdir(), telldir(), and

Reply via email to