diff -ur ./interceptor.c ../vpnclient.patched/interceptor.c --- ./interceptor.c 2004-05-27 14:27:05.000000000 -0400 +++ ../vpnclient.patched/interceptor.c 2006-03-23 11:21:53.000000000 -0500 @@ -46,7 +46,7 @@ static int handle_vpnup(void); static int handle_vpndown(void); static CNIFRAGMENT build_ppp_fake_mac_frag(struct ethhdr *dummy); -static int inline supported_device(struct net_device *dev); +static int supported_device(struct net_device *dev); /*packet handler functions*/ static int recv_ip_packet_handler(struct sk_buff *skb, @@ -451,8 +451,7 @@ s->rc = 0; } -static int -inline supported_device(struct net_device* dev) +static int supported_device(struct net_device* dev) { int rc=0; diff -ur ./linuxcniapi.c ../vpnclient.patched/linuxcniapi.c --- ./linuxcniapi.c 2004-05-27 14:27:05.000000000 -0400 +++ ../vpnclient.patched/linuxcniapi.c 2006-03-23 11:25:49.000000000 -0500 @@ -298,7 +298,7 @@ goto exit_gracefully; } /* move the data into the packet */ - do_gettimeofday(&skb->stamp); + do_gettimeofday((struct timeval *) &skb->tstamp); pIP = skb_put(skb, lpPacketDescriptor->uiPacketSize); @@ -427,7 +427,7 @@ CniGetPacketData(Packet, 0, lpPacketDescriptor->uiPacketSize, pIP); /* put the mac header on */ - do_gettimeofday(&skb->stamp); + do_gettimeofday((struct timeval *) &skb->tstamp); skb->dev = pBinding->pDevice;