home *** CD-ROM | disk | FTP | other *** search
- *** ../temp1/Utilities/mkconf.c Mon May 12 07:37:01 1986
- --- Utilities/mkconf.c Mon May 12 07:50:12 1986
- ***************
- *** 15,20
- {
- setuid(geteuid());
- umask(022);
- execvp("mkdir", argv);
- }
-
-
- --- 15,23 -----
- {
- setuid(geteuid());
- umask(022);
- + /* oops. UNaXcess is passing two args - only the first is wanted */
- + if (argc >= 3)
- + argv[3] = 0;
- execvp("mkdir", argv);
- }
-
-