Kurt V. Hindenburg wrote:
> I hope this is not a stupid question, but does the new ppp2.3.4 support
> being compiled using the glibc files? When I try I get the following errors:
> ppp.c too few arg dev_kfree_skb
Yep, glibc is supported. The def_kfree_skb problem is due to a small
typo in the source. The following patch will fix that:
--- ppp-2.3.4/linux/ppp.c.orig Mon Apr 27 00:21:37 1998
+++ ppp-2.3.4/linux/ppp.c Mon Apr 27 00:22:01 1998
@@ -3076,7 +3076,7 @@
/*
* Send a frame to the remote.
*/
-#if LINUX_VERSION_CODE < VERSION(2,1,86)
+#if LINUX_VERSION_CODE >= VERSION(2,1,86)
#define FREE_SKB(skb) dev_kfree_skb(skb)
#else
#define FREE_SKB(skb) dev_kfree_skb(skb, FREE_WRITE)
--
/'"`\ zzzZ | My PGP Public Key is available at:
( - - ) | <http://home1.inet.tele.dk/renehl/>
--oooO--(_)--Oooo------------------------------------------
Don't ya just hate it when there's not enough room to fin
-
To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
the body of a message to [EMAIL PROTECTED]