ipv4: Fix ip_local_out_sk by passing the sk into __ip_local_out_sk
[deliverable/linux.git] / net / ipv4 / ip_output.c
index 911ea739049a69e98cedd6590a0a8616b4285ab5..6cb585a05dd11d220507cc56953178d1d8bcded2 100644 (file)
@@ -117,7 +117,7 @@ int ip_local_out_sk(struct sock *sk, struct sk_buff *skb)
 {
        int err;
 
-       err = __ip_local_out(skb);
+       err = __ip_local_out_sk(sk, skb);
        if (likely(err == 1))
                err = dst_output(sk, skb);
 
This page took 0.023402 seconds and 5 git commands to generate.