2003-03-02 14:21:09

by Michael Buesch

[permalink] [raw]
Subject: [PATCH] compiletime-fix in isdn_ppp

Hi.

Without this patch linux-2.5.63 vanilla didn't compile.
I don't know, if I have introduced a problem with this patch, but for me it
compiles now. :)

bye, Michael Buesch.



diff -urN -X /home/mb/dontdiff
linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp.c
linux-2.5.63/drivers/isdn/i4l/isdn_ppp.c
--- linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp.c 2002-12-16
02:08:12.000000000 +0000
+++ linux-2.5.63/drivers/isdn/i4l/isdn_ppp.c 2003-03-02 14:23:48.000000000
+0000
@@ -1037,7 +1037,7 @@
isdn_ppp_frame_log("xmit1", skb->data, skb->len, 32,
ipppd->unit, -1);

ippp_push_proto(ind_ppp, skb, proto);
- ippp_mp_xmit(idev, skb, proto);
+ ippp_mp_xmit(idev, skb);
return 0;

drop:
diff -urN -X /home/mb/dontdiff
linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp_mp.h
linux-2.5.63/drivers/isdn/i4l/isdn_ppp_mp.h
--- linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp_mp.h 2002-12-16
02:08:24.000000000 +0000
+++ linux-2.5.63/drivers/isdn/i4l/isdn_ppp_mp.h 2003-03-02 14:23:58.000000000
+0000
@@ -42,9 +42,9 @@
}

static inline void
-ippp_mp_xmit(isdn_net_dev *idev, struct sk_buff *skb, u16 proto)
+ippp_mp_xmit(isdn_net_dev *idev, struct sk_buff *skb)
{
- ippp_xmit(idev, skb, proto);
+ ippp_xmit(idev, skb);
}

static inline void


2003-03-03 04:34:38

by Kai Germaschewski

[permalink] [raw]
Subject: Re: [PATCH] compiletime-fix in isdn_ppp

On Sun, 2 Mar 2003, Michael Buesch wrote:

> Without this patch linux-2.5.63 vanilla didn't compile.
> I don't know, if I have introduced a problem with this patch, but for me it
> compiles now. :)

Looks good, a similar patch is in my tree, too...

--Kai