From: David S. Miller Date: Mon, 15 Aug 2005 01:01:08 +0000 (-0700) Subject: [IPX]: Fix build error in ipx_recvmsg() X-Git-Tag: v2.6.14-rc1~1035^2~85 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=7de76272b54e3677bcd247d1e1809015236a298d;p=~shefty%2Frdma-dev.git [IPX]: Fix build error in ipx_recvmsg() Missing semicolon introduced by skb->stamp changeset: d3258b7d8ed96f97032639bc745179f1951b0da5 Signed-off-by: David S. Miller --- diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index c54f8acc97e..180e383f707 100644 --- a/net/ipx/af_ipx.c +++ b/net/ipx/af_ipx.c @@ -1797,7 +1797,7 @@ static int ipx_recvmsg(struct kiocb *iocb, struct socket *sock, if (rc) goto out_free; if (skb->tstamp.off_sec) - skb_get_timestamp(skb, &sk->sk_stamp) + skb_get_timestamp(skb, &sk->sk_stamp); msg->msg_namelen = sizeof(*sipx);