home *** CD-ROM | disk | FTP | other *** search
- Index: patchlevel.h
- Prereq: 2.1
- *** /tmp/,RCSt1a26117 Fri Jun 3 16:09:09 1988
- --- patchlevel.h Fri Jun 3 16:08:46 1988
- ***************
- *** 2,7 ****
- --- 2,10 ----
- ** This file records official patches. RCS records the edit log.
- **
- ** $Log: patchlevel.h,v $
- + ** Revision 2.2 88/06/03 16:08:37 rsalz
- + ** patch02: Fix order of chdir/mkdir commands for unshar.
- + **
- ** Revision 2.1 88/06/03 12:16:40 rsalz
- ** patch01: Add config.x386 and config.sVr3; change "dirent.h" to <dirent.h>
- ** patch01: In Makefile, use $(DIRLIB) only in actions, not dependencies;
- ***************
- *** 16,19 ****
- ** Revision 2.0 88/05/27 13:32:13 rsalz
- ** First comp.sources.unix release
- */
- ! #define PATCHLEVEL 1
- --- 19,22 ----
- ** Revision 2.0 88/05/27 13:32:13 rsalz
- ** First comp.sources.unix release
- */
- ! #define PATCHLEVEL 2
- *** /tmp/,RCSt1a26117 Fri Jun 3 16:09:12 1988
- --- unshar.c Fri Jun 3 16:08:48 1988
- ***************
- *** 6,12 ****
- #include "shar.h"
- #ifdef RCSID
- static char RCS[] =
- ! "$Header: unshar.c,v 2.1 88/06/03 11:39:33 rsalz Exp $";
- #endif /* RCSID */
-
-
- --- 6,12 ----
- #include "shar.h"
- #ifdef RCSID
- static char RCS[] =
- ! "$Header: unshar.c,v 2.2 88/06/03 16:08:14 rsalz Exp $";
- #endif /* RCSID */
-
-
- ***************
- *** 338,344 ****
- }
-
- /* Got directory; try to go there. Only make last component. */
- ! if (chdir(p) < 0 && mkdir(p, 0777) < 0 && chdir(p) < 0)
- Quit("Cannot chdir nor mkdir desired directory");
- }
- else
- --- 338,344 ----
- }
-
- /* Got directory; try to go there. Only make last component. */
- ! if (chdir(p) < 0 && (mkdir(p, 0777) < 0 || chdir(p) < 0))
- Quit("Cannot chdir nor mkdir desired directory");
- }
- else
-