|
From: Sven C. K. <sc...@sn...> - 2001-08-02 15:05:35
|
Hello!
I tried to use fileAttributesAtPath:traverseLink: on Windows, which gave
me an access violation. The following patch worked for me.
Regards,
Sven Koehler
--- NSFileManager.m Tue Jun 26 14:18:45 2001
+++ NSFileManager.new.m Thu Aug 2 17:01:15 2001
@@ -856,6 +856,8 @@
values[9] = [NSString stringWithCString:pw->pw_name];
else
count = 9;
+#else
+ count = 8;
#endif
|