diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-07-20 14:56:40 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1997-07-20 14:56:40 +0000 |
commit | e308faf24f68e262d92d294a01ddca7a17e76762 (patch) | |
tree | 22c47cb315811834861f013067878ff664e95abd /net/x25/x25_dev.c | |
parent | 30c6397ce63178fcb3e7963ac247f0a03132aca9 (diff) |
Sync with Linux 2.1.46.
Diffstat (limited to 'net/x25/x25_dev.c')
-rw-r--r-- | net/x25/x25_dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/x25/x25_dev.c b/net/x25/x25_dev.c index 6b02a9441..e4cd99ae7 100644 --- a/net/x25/x25_dev.c +++ b/net/x25/x25_dev.c @@ -1,5 +1,5 @@ /* - * X.25 Packet Layer release 001 + * X.25 Packet Layer release 002 * * This is ALPHA test software. This code may break your machine, randomly fail to work with new * releases, misbehave and/or generally screw up. It might even work. @@ -73,7 +73,7 @@ static int x25_receive_data(struct sk_buff *skb, struct x25_neigh *neigh) /* * Find an existing socket. */ - if ((sk = x25_find_socket(lci)) != NULL) { + if ((sk = x25_find_socket(lci, neigh)) != NULL) { skb->h.raw = skb->data; return x25_process_rx_frame(sk, skb); } |