Patch #2 to Pcomm v1.1

egray at fthood.UUCP egray at fthood.UUCP
Fri Sep 16 04:18:00 AEST 1988


Here we go again...  This is patch #2 to Pcomm v1.1

This patch will fix the problem that some people are having with 
seqmentation faults (although I'm not convinced the problem isn't
in their compiler).  Also, the problem of the "add line feed after
carriage return" function being set accidently has been fixed.

Emmet P. Gray				US Army, HQ III Corps & Fort Hood
..!uunet!uiucuxc!fthood!egray		Attn: AFZF-DE-ENV
					DEH, Environmental Management Office
					Fort Hood, TX 76544-5057

------------------------------------------------------------------------------
*** old/info.c	Thu Sep 15 12:43:27 1988
--- info.c	Thu Sep 15 12:44:56 1988
***************
*** 5,9
  
  #define VERSION "1.1"
! #define DATE	"13 Sep 88"
  
  #include <stdio.h>

--- 5,9 -----
  
  #define VERSION "1.1"
! #define DATE	"15 Sep 88"
  
  #include <stdio.h>
*** old/main.c	Thu Sep 15 12:43:27 1988
--- main.c	Thu Sep 15 12:44:44 1988
***************
*** 18,21
   *	Release v1.1	21 Aug 88
   *	  patch #1	13 Sep 88
   */
  

--- 18,22 -----
   *	Release v1.1	21 Aug 88
   *	  patch #1	13 Sep 88
+  *	  patch #2	15 Sep 88
   */
  
*** old/port.c	Thu Sep 15 12:44:07 1988
--- port.c	Thu Sep 15 12:41:14 1988
***************
*** 214,218
  	}
  					/* remove the lock */
! 	if (*lock_path != NULL && lock_path != NULL) {
  		if (unlink(lock_path)) {
  			sprintf(buf, "\"%s\"", lock_path);

--- 214,218 -----
  	}
  					/* remove the lock */
! 	if (lock_path != NULL && *lock_path != NULL) {
  		if (unlink(lock_path)) {
  			sprintf(buf, "\"%s\"", lock_path);
*** old/terminal.c	Thu Sep 15 12:44:20 1988
--- terminal.c	Thu Sep 15 12:26:14 1988
***************
*** 40,43
  	resetterm();
  	term_mode();
  
  	if (input_status)

--- 40,44 -----
  	resetterm();
  	term_mode();
+ 	cr_lf = !strcmp(param->cr_out, "CR/LF");
  
  	if (input_status)



More information about the Unix-pc.sources mailing list