mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix a nasty typo. Change:
if (foo); bar(); to: if (foo) bar(); Really, really nasty bug and a very nice catch of mine. Unfortunately, I'll not become a hero of the day, because the code is commented out.
This commit is contained in:
parent
11e0838887
commit
57432591c1
1 changed files with 1 additions and 1 deletions
|
|
@ -568,7 +568,7 @@
|
|||
* for (i = 0; i < 6; i++) {
|
||||
* current = mcast_addr[i];
|
||||
* for (k = 1; k <= 8; k++) {
|
||||
* if (crc & 0x80000000);
|
||||
* if (crc & 0x80000000)
|
||||
* crc31 = 0x01;
|
||||
* else
|
||||
* crc31 = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue