summaryrefslogtreecommitdiffstats
path: root/ax25ipd/process.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 02:34:25 +0200
committerRalf Baechle <ralf@linux-mips.org>2015-05-02 18:16:06 +0200
commitcc6d8211189bcd7bb665aa65d97385d0a5821bdc (patch)
tree88aa6395203ca8e3555e378f3b62cee18dbf8d76 /ax25ipd/process.c
parentafa8313f928dadd74dba812bef6038ba0d144370 (diff)
Always have a space between if, for, switch, while and the following `('.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'ax25ipd/process.c')
-rw-r--r--ax25ipd/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ax25ipd/process.c b/ax25ipd/process.c
index 5717cd1..f0ac54d 100644
--- a/ax25ipd/process.c
+++ b/ax25ipd/process.c
@@ -272,7 +272,7 @@ int addrmatch(unsigned char *a, unsigned char *b)
return 1; /* ssid 0 matches all ssid's */
if ((*a++ ^ *b) & 0x1e)
return 0; /* ssid */
-/* if((*a++^*b++)&0x1e)return 0; ssid (how it was ...) */
+/* if ((*a++^*b++)&0x1e)return 0; ssid (how it was ...) */
return 1;
}