]> err.no Git - linux-2.6/blobdiff - net/x25/x25_forward.c
[ARP]: Minus one level of ndentation in arp_req_delete
[linux-2.6] / net / x25 / x25_forward.c
index 8738ec7ce69336dd1960d9e3c8c9a0e1fa68a0e4..34478035e05edd64131525b438eab2bedc55791c 100644 (file)
@@ -118,13 +118,14 @@ int x25_forward_data(int lci, struct x25_neigh *from, struct sk_buff *skb) {
                goto out;
 
        if ( (skbn = pskb_copy(skb, GFP_ATOMIC)) == NULL){
-               goto out;
+               goto output;
 
        }
        x25_transmit_link(skbn, nb);
 
-       x25_neigh_put(nb);
        rc = 1;
+output:
+       x25_neigh_put(nb);
 out:
        return rc;
 }