]> git.baikalelectronics.ru Git - kernel.git/commit
Fix ipv4/igmp.c compile with gcc-4 and IP_MULTICAST
authorLinus Torvalds <torvalds@g5.osdl.org>
Tue, 31 Jan 2006 21:11:41 +0000 (13:11 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Tue, 31 Jan 2006 21:11:41 +0000 (13:11 -0800)
commitf907f1b5349dde9e9aae8c1abca131faa91c268f
treedca773c1f509e06330559e55113a0e7cae5ddb68
parent398186bd56f38c86d349c3e5caba755dc638418d
Fix ipv4/igmp.c compile with gcc-4 and IP_MULTICAST

Modern versions of gcc do not like case statements at the end of a block
statement: you need at least an empty statement.  Using just a "break;"
is preferred for visual style.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
net/ipv4/igmp.c