Patch #6 to Pcomm v1.1

egray at fthood.UUCP egray at fthood.UUCP
Sun Nov 20 03:03:00 AEST 1988


Oops, found another bug... This is patch #6 to the Pcomm v1.1 distribution
package.

This patch will fix the bug that displays the "TRUNCATE ERROR" message
when downloading a file.  It also contains a few other minor bug fixes
that I've been saving up.

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/Doc	Sat Oct 22 19:34:54 1988
--- Doc	Sat Oct 22 19:56:14 1988
***************
*** 738,743
  	NOTE:  To access the port directly without dialing  (perhaps  to
  	send  the dial codes yourself), select an empty entry or enter a
! 	single space character at phone number prompt of the manual dial
! 	option.
  
  		<CR> Carriage return.  Scroll the dialing directory down

--- 738,743 -----
  	NOTE:  To access the port directly without dialing  (perhaps  to
  	send  the dial codes yourself), select an empty entry or enter a
! 	single space character at the phone number prompt of the  manual
! 	dial option.
  
  		<CR> Carriage return.  Scroll the dialing directory down
*** old/info.c	Sat Oct 22 19:35:41 1988
--- info.c	Fri Nov 18 13:17:39 1988
***************
*** 5,9
  
  #define VERSION "1.1"
! #define DATE	"15 Oct 88"
  
  #include <stdio.h>

--- 5,9 -----
  
  #define VERSION "1.1"
! #define DATE	"19 Nov 88"
  
  #include <stdio.h>
*** old/main.c	Sat Oct 22 19:35:55 1988
--- main.c	Fri Nov 18 13:16:48 1988
***************
*** 22,25
   *	  patch #4	30 Sep 88
   *	  patch #5	15 Oct 88
   */
  

--- 22,26 -----
   *	  patch #4	30 Sep 88
   *	  patch #5	15 Oct 88
+  *	  patch #6	19 Nov 88
   */
  
*** old/port.c	Sat Oct 22 19:36:05 1988
--- port.c	Sat Oct 22 19:47:11 1988
***************
*** 73,77
  		}
  		if (list[0] == -1) {
! 			sprintf(message, "'%' in the index field doesn't exist in the", dir->index[dir->d_cur]);
  			sprintf(buf, "modem/TTY database '%s'", modem->m_path);
  			error_win(0, message, buf);

--- 73,77 -----
  		}
  		if (list[0] == -1) {
! 			sprintf(message, "'%s' in the index field doesn't exist in the", dir->index[dir->d_cur]);
  			sprintf(buf, "modem/TTY database '%s'", modem->m_path);
  			error_win(0, message, buf);
*** old/x_rcv.c	Sat Oct 22 19:36:53 1988
--- x_rcv.c	Fri Nov 18 13:13:55 1988
***************
*** 84,88
  					/* dissect the file name */
  			if ((name = strrchr(file, '/')))
! 				strcpy(file_name, name++);
  			else
  				strcpy(file_name, file);

--- 84,88 -----
  					/* dissect the file name */
  			if ((name = strrchr(file, '/')))
! 				strcpy(file_name, ++name);
  			else
  				strcpy(file_name, file);



More information about the Comp.sources.bugs mailing list