Merge branch 'devel' of github.com:Araq/Nimrod into devel

Merging mainline devel.
This commit is contained in:
Milos Negovanovic
2014-09-26 11:14:32 +01:00

View File

@@ -1332,10 +1332,10 @@ proc removeDir*(dir: string) {.rtl, extern: "nos$1", tags: [
proc rawCreateDir(dir: string) =
when defined(solaris):
if mkdir(dir, 0o711) != 0'i32 and errno != EEXIST and errno != ENOSYS:
if mkdir(dir, 0o777) != 0'i32 and errno != EEXIST and errno != ENOSYS:
osError(osLastError())
elif defined(unix):
if mkdir(dir, 0o711) != 0'i32 and errno != EEXIST:
if mkdir(dir, 0o777) != 0'i32 and errno != EEXIST:
osError(osLastError())
else:
when useWinUnicode: