Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!csd4.milw.wisc.edu!uxc!uxc.cso.uiuc.edu!fthood!egray From: egray@fthood.UUCP Newsgroups: comp.sources.bugs Subject: Patch #9 to Pcomm v1.1 Message-ID: <11200004@fthood> Date: 10 Feb 89 02:14:00 GMT Lines: 66 Nf-ID: #N:fthood:11200004:000:1535 Nf-From: fthood.UUCP!egray Feb 9 20:14:00 1989 This is patch #9 to the Pcomm v1.1 distribution package. This is incredible!! Here I am trying to "retire" the 1.1 version of Pcomm and I keep messing it up. This patch is to fix another bug I *created* with the patch #7. I know what happened... I was on the wrong machine when I made patch #7 Emmet P. Gray US Army, HQ III Corps & Fort Hood ...!uunet!uiucuxc!fthood!egray Attn: AFZF-DE-ENV Directorate of Engineering & Housing Environmental Management Office Fort Hood, TX 76544-5057 ----------------------------------------------------------------------------- *** old/info.c Thu Feb 9 19:54:54 1989 --- info.c Thu Feb 9 19:55:16 1989 *************** *** 4,9 */ ! #define VERSION "1.1.7" ! #define DATE "27 Jan 89" #include --- 4,9 ----- */ ! #define VERSION "1.1.9" ! #define DATE "9 Feb 89" #include *** old/main.c Thu Feb 9 19:54:54 1989 --- main.c Thu Feb 9 19:57:44 1989 *************** *** 19,22 * patch #6 19 Nov 88 * patch #7 27 Jan 89 */ --- 19,24 ----- * patch #6 19 Nov 88 * patch #7 27 Jan 89 + * patch #8 2 Feb 89 + * patch #9 9 Feb 89 */ *** old/x_extrnl.c Thu Feb 9 19:48:11 1989 --- x_extrnl.c Thu Feb 9 19:48:37 1989 *************** *** 87,91 } /* see if the process is still active */ ! if ((kill(epid, 0) == -1) && errno == ESRCH) break; } --- 87,91 ----- } /* see if the process is still active */ ! if ((kill(-epid, 0) == -1) && errno == ESRCH) break; }