linux-1.3.4.tar.gz needs this patch for ppp.c

Simon Cooper (scooper@hardees.rutgers.edu)
Tue, 27 Jun 95 04:15 EDT


The following is needed to get the kernel to link if ppp is included.

Simon.
------------------------------------------------------------------------------
--- v1.3.4/drivers/net/ppp.c.~1~ Mon Jun 26 04:06:52 1995
+++ v1.3.4/drivers/net/ppp.c Tue Jun 27 04:08:12 1995
@@ -1517,7 +1517,7 @@
case PPPIOCSDEBUG:
error = verify_area (VERIFY_READ, (void *) l, sizeof (temp_i));
if (error == 0) {
- ppp_debug = get_int ((int *) l);
+ ppp_debug = get_user ((int *) l);
ppp_debug_netpackets = (ppp_debug & 0xff00) >> 8;
ppp_debug &= 0xff;
PRINTKN (1, (KERN_INFO "ppp_ioctl: set debug level %d, netpacket %d\n",