net: Fix typo in net/core/sock.c.

In sock_queue_rcv_skb() (net/core/sock.c) it should be:
"Cast sk->rcvbuf ..." instead of: "Cast skb->rcvbuf ..."

Signed-off-by: Rami Rosen <ramirose@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Rami Rosen and committed by David S. Miller 9ee6b7f1 4b95ede6

+1 -1
+1 -1
net/core/sock.c
··· 270 270 int err = 0; 271 271 int skb_len; 272 272 273 - /* Cast skb->rcvbuf to unsigned... It's pointless, but reduces 273 + /* Cast sk->rcvbuf to unsigned... It's pointless, but reduces 274 274 number of warnings when compiling with -W --ANK 275 275 */ 276 276 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=