From sanders@austin.BSDI.COM Thu Feb 10 15:11:15 1994
Received: from austin.BSDI.COM by fido.wps.com (5.67/wps.com-hackery)
	id AA26532; Thu, 10 Feb 94 15:11:11 -0800
Received: from austin.BSDI.COM (sanders@localhost [127.0.0.1]) by austin.BSDI.COM (8.6.5/8.6.5) with ESMTP id RAA04871 for <tomj@wps.com>; Thu, 10 Feb 1994 17:11:07 -0600
Message-Id: <199402102311.RAA04871@austin.BSDI.COM>
To: tomj@wps.com
Subject: sys/i386/isa/if_rn.c patch
Organization: Berkeley Software Design, Inc.
Date: Thu, 10 Feb 1994 17:11:01 -0600
From: Tony Sanders <sanders@BSDI.COM>
Status: O


===================================================================
RCS file: /bsdi/MASTER/BSDI_OS/sys/i386/isa/if_rn.c,v
retrieving revision 1.7
retrieving revision 1.9
diff -c -r1.7 -r1.9
*** /tmp/RCSA001902	Thu Feb 10 17:09:18 1994
--- /tmp/RCSB001902	Thu Feb 10 17:09:18 1994
***************
*** 3,9 ****
   * The Berkeley Software Design Inc. software License Agreement specifies
   * the terms and conditions for redistribution.
   *
!  *	BSDI $Id: if_rn.c,v 1.7 1993/03/11 15:23:26 karels Exp $
   */
  
  /*
--- 3,9 ----
   * The Berkeley Software Design Inc. software License Agreement specifies
   * the terms and conditions for redistribution.
   *
!  *	BSDI $Id: if_rn.c,v 1.9 1994/01/29 05:28:17 karels Exp $
   */
  
  /*
***************
*** 257,263 ****
  	ifp->if_unit = sc->sc_dev.dv_unit;
  	ifp->if_name = "rn";
  	ifp->if_mtu = HDLCMTU;
! 	ifp->if_flags = IFF_POINTOPOINT;
  	ifp->if_type = IFT_PTPSERIAL;
  	ifp->if_ioctl = p2p_ioctl;
  	ifp->if_output = 0;             /* crash and burn on access */
--- 257,263 ----
  	ifp->if_unit = sc->sc_dev.dv_unit;
  	ifp->if_name = "rn";
  	ifp->if_mtu = HDLCMTU;
! 	ifp->if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
  	ifp->if_type = IFT_PTPSERIAL;
  	ifp->if_ioctl = p2p_ioctl;
  	ifp->if_output = 0;             /* crash and burn on access */
***************
*** 845,852 ****
  	static struct upd_gowr Gowr = {
  		uPD_GOWR,			/* cmd */
  		0,				/* zero */
! 		uPD_GOWR_1 |	/* RTS */	/* go */
! 		uPD_GOWR_2	/* DTR */
  	};
  		
  	/* set modes */
--- 845,851 ----
  	static struct upd_gowr Gowr = {
  		uPD_GOWR,			/* cmd */
  		0,				/* zero */
! 		0 /* !RTS == 0, !DTR == 0 */	/* go */
  	};
  		
  	/* set modes */
***************
*** 888,894 ****
  	static struct upd_gowr Gowr = {
  		uPD_GOWR,			/* cmd */
  		0,				/* zero */
! 		0				/* go */
  	};
  	
  	/* Drop RTS and DTR */
--- 887,894 ----
  	static struct upd_gowr Gowr = {
  		uPD_GOWR,			/* cmd */
  		0,				/* zero */
! 		uPD_GOWR_1 |	/* !RTS */	/* go */
! 		uPD_GOWR_2	/* !DTR */
  	};
  	
  	/* Drop RTS and DTR */

