https://bugzilla.novell.com/show_bug.cgi?id=677255
https://bugzilla.novell.com/show_bug.cgi?id=677255#c3 Jonathan Pryor <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #3 from Jonathan Pryor <[email protected]> 2011-03-07 16:59:55 UTC --- As for the original bug, that is not a bug, that's Unix. For example, within `csharp`: using (var o = new UnixFileInfo("foo.txt").Create(FileAccessPermissions.AllPermissions)) { } The `ls -l` output for foo.txt: $ ls -l foo.txt -rwxr-xr-x 1 jon staff 0 Mar 7 11:45 foo.txt I believe your "bug" is that 755 (the above) is not 777. HOWEVER: $ umask 0022 If we set umask to 0: $ umask 0 $ csharp -r:Mono.Posix.dll <<EOF using Mono.Unix; using (var o = new UnixFileInfo("foo.txt").Create(FileAccessPermissions.AllPermissions)) { } EOF $ ls -l foo.txt -rwxrwxrwx 1 jon staff 0 Mar 7 11:57 foo.txt -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
