Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Mono.Posix/Mono.Unix/ChangeLog')
-rw-r--r--mcs/class/Mono.Posix/Mono.Unix/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/class/Mono.Posix/Mono.Unix/ChangeLog b/mcs/class/Mono.Posix/Mono.Unix/ChangeLog
index 30d83b0ca3a..35148170042 100644
--- a/mcs/class/Mono.Posix/Mono.Unix/ChangeLog
+++ b/mcs/class/Mono.Posix/Mono.Unix/ChangeLog
@@ -1,3 +1,13 @@
+2004-12-29 Jonathan Pryor <jonpryor@vt.edu>
+
+ * Syscall.cs: Fix Object.Equals implementations.
+ * UnixPath.cs: New & improved, with Testing! GetRealPath() is changed so
+ that it doesn't walk the entire path looking for symlinks, it just reads
+ the leaf. GetCompletRealPath() walks the entire path resolving symlinks.
+ GetCanonicalPath() added, which "cleans up" a path (removing extraneous
+ "." and ".." entries).
+ * UnixSymbolicLinkInfo.cs: Rename ContentsLength -> MaxContentsSize.
+
2004-12-28 Jonathan Pryor <jonpryor@vt.edu>
* UnixFileSystemInfo.cs: Add a link(2) wrapper, CreateLink(). Strictly