From a1b91310df28198e6aa6213c5cc661d13fa388bf Mon Sep 17 00:00:00 2001 From: Ferry Huberts Date: Thu, 31 May 2012 14:34:37 +0200 Subject: [PATCH] linux: net: fix some typos Signed-off-by: Ferry Huberts --- src/linux/net.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/linux/net.c b/src/linux/net.c index ae1b39a8..7ba9821c 100644 --- a/src/linux/net.c +++ b/src/linux/net.c @@ -237,7 +237,7 @@ net_os_set_global_ifoptions(void) { snprintf(procfile, sizeof(procfile), PROC_IF_SPOOF, TUNNEL_ENDPOINT_IF); if (writeToProc(procfile, &orig_tunnel_rp_filter, OLSRD_SPOOF_VALUE)) { OLSR_PRINTF(0, "WARNING! Could not disable the IP spoof filter for tunnel!\n" - "you should mannually ensure that IP spoof filtering is disabled!\n\n"); + "you should manually ensure that IP spoof filtering is disabled!\n\n"); olsr_startup_sleep(3); } @@ -248,7 +248,7 @@ net_os_set_global_ifoptions(void) { snprintf(procfile, sizeof(procfile), PROC_IF_SPOOF, TUNNEL_ENDPOINT_IF6); if (writeToProc(procfile, &orig_tunnel6_rp_filter, OLSRD_SPOOF_VALUE)) { OLSR_PRINTF(0, "WARNING! Could not disable the IP spoof filter for tunnel6!\n" - "you should mannually ensure that IP spoof filtering is disabled!\n\n"); + "you should manually ensure that IP spoof filtering is disabled!\n\n"); olsr_startup_sleep(3); } @@ -293,7 +293,7 @@ net_os_set_ifoptions(const char *if_name, struct interface *iface) if (writeToProc(procfile, &iface->nic_state.redirect, OLSRD_REDIRECT_VALUE)) { OLSR_PRINTF(0, "WARNING! Could not disable ICMP redirects!\n" - "you should mannually ensure that ICMP redirects are disabled!\n\n"); + "you should manually ensure that ICMP redirects are disabled!\n\n"); olsr_startup_sleep(3); return 0; } @@ -303,7 +303,7 @@ net_os_set_ifoptions(const char *if_name, struct interface *iface) if (writeToProc(procfile, &iface->nic_state.spoof, OLSRD_SPOOF_VALUE)) { OLSR_PRINTF(0, "WARNING! Could not disable the IP spoof filter!\n" - "you should mannually ensure that IP spoof filtering is disabled!\n\n"); + "you should manually ensure that IP spoof filtering is disabled!\n\n"); olsr_startup_sleep(3); return 0; -- 2.20.1