Commit 9c203489 authored by Rik van Riel's avatar Rik van Riel Committed by David S. Miller

[NET]: Fix error message when registering IGMP.

parent 968876cc
...@@ -1134,7 +1134,7 @@ static int __init inet_init(void) ...@@ -1134,7 +1134,7 @@ static int __init inet_init(void)
printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n"); printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n");
#ifdef CONFIG_IP_MULTICAST #ifdef CONFIG_IP_MULTICAST
if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0) if (inet_add_protocol(&igmp_protocol, IPPROTO_IGMP) < 0)
printk(KERN_CRIT "inet_init: Cannot add TCP protocol\n"); printk(KERN_CRIT "inet_init: Cannot add IGMP protocol\n");
#endif #endif
/* Register the socket-side information for inet_create. */ /* Register the socket-side information for inet_create. */
......
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