Commit c855e256 authored by Jack Jansen's avatar Jack Jansen

GUSI mkdir() lost its dummy second arg

parent a4d1e508
......@@ -361,7 +361,11 @@ mac_mkdir(self, args)
if (!newgetargs(args, "s|i", &path, &mode))
return NULL;
BGN_SAVE
#ifdef USE_GUSI
res = mkdir(path);
#else
res = mkdir(path, mode);
#endif
END_SAVE
if (res < 0)
return mac_error();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment