Hi,
In NSFileWrapper, the method:
- (BOOL) writeToFile: (NSString*)path
atomically: (BOOL)atomicFlag
updateFilenames: (BOOL)updateFilenamesFlag
contains a small bug.
At the end of the method we have:
if (success && updateFilenamesFlag)
[self setFilename: path];
and I think we should have:
if (success && updateFilenamesFlag)
[self setFilename: [path lastPathComponent]];
Ludovic
--
Live as if you were to die tomorrow.
Learn as if you were to live forever.
- Gandhi
_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep