Subject: higher baud rates in vi
To: None <current-users@sun-lamp.cs.berkeley.edu>
From: Tim Chase <tim@introl.introl.com>
List: current-users
Date: 02/02/1994 10:54:53
If you're tired of the unknown baud rate message in nvi you
can add the following patch to util.c.  I don't remember if
elvis complained about this.  I think I started happening
with nvi.


*** util.c	Wed Feb  2 10:51:32 1994
--- util.c.new	Wed Feb  2 10:52:40 1994
***************
*** 532,537 ****
--- 532,541 ----
  		return (19200);
  	case B38400:
  		return (38400);
+ 	case B57600:
+ 		return (57600);
+ 	case B115200:
+ 		return (115200);
  	default:
  		/*
  		 * EXTA and EXTB aren't required by POSIX 1003.1, and

------------------------------------------------------------------------------