summaryrefslogtreecommitdiffstats
path: root/ax25ipd
diff options
context:
space:
mode:
authorCraig Small <csmall@enc.com.au>2002-01-12 04:55:41 +0000
committerCraig Small <csmall@enc.com.au>2002-01-12 04:55:41 +0000
commit3b549dd35b058040139f29a422ca82b1912cc8d7 (patch)
tree4e1aa73ce19b6687b821cdf921161d706a932cea /ax25ipd
parentad6b05336e41037c3e61a79b95829dfca0e5d334 (diff)
Steve Frasers patch for ssid matching in ax25ipd
Diffstat (limited to 'ax25ipd')
-rw-r--r--ax25ipd/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ax25ipd/process.c b/ax25ipd/process.c
index 52dbf72..0b1308c 100644
--- a/ax25ipd/process.c
+++ b/ax25ipd/process.c
@@ -265,7 +265,7 @@ unsigned char *a, *b;
return 0; /* "S" */
if ((*a++ ^ *b++) & 0xfe)
return 0; /* "B" */
- if (((*b++) & 0x1e) == 0)
+ if (((*b) & 0x1e) == 0)
return 1; /* ssid 0 matches all ssid's */
if ((*a++ ^ *b) & 0x1e)
return 0; /* ssid */