Commit 35114c45 authored by Jeff Garzik's avatar Jeff Garzik

[tokenring smctr] remove stray ';' that prevented a loop from working [#312]

Fixes broken node address check, and bugzilla bug #312.
parent 41602989
......@@ -3064,7 +3064,7 @@ static int smctr_load_node_addr(struct net_device *dev)
__u8 r;
/* Check if node address has been specified by user. (non-0) */
for(i = 0; ((i < 6) && (dev->dev_addr[i] == 0)); i++);
for(i = 0; ((i < 6) && (dev->dev_addr[i] == 0)); i++)
{
if(i != 6)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment