commit | 3ca6eddb1235ca0e962c766f6b8ede1a76f08f70 | [log] [tgz] |
---|---|---|
author | Jack Jansen <jack.jansen@cwi.nl> | Tue Aug 06 16:06:31 1996 +0000 |
committer | Jack Jansen <jack.jansen@cwi.nl> | Tue Aug 06 16:06:31 1996 +0000 |
tree | bbfbb7e302373abfef683410d8973bd6aaf9e141 | |
parent | eb1284be97004957a6de6c36df26a8626072659b [diff] |
GUSI mkdir() lost its dummy second arg
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index 75716db..3d5c0cc 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c
@@ -361,7 +361,11 @@ 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();