diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-19 17:48:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-19 17:48:55 +0200 |
commit | e695ac97fdd48808dd0a84d4725a063481a03c30 (patch) | |
tree | b50948f96cd5ee92c9c74999598874a32b9e3a0b /networking | |
parent | e5814a5a42f40274aaadc1187680ffe5c4632c0e (diff) | |
download | busybox-w32-e695ac97fdd48808dd0a84d4725a063481a03c30.tar.gz busybox-w32-e695ac97fdd48808dd0a84d4725a063481a03c30.tar.bz2 busybox-w32-e695ac97fdd48808dd0a84d4725a063481a03c30.zip |
typo fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/route.c b/networking/route.c index 65c2fb7c8..102a6ec67 100644 --- a/networking/route.c +++ b/networking/route.c | |||
@@ -295,7 +295,7 @@ static NOINLINE void INET_setroute(int action, char **args) | |||
295 | #endif | 295 | #endif |
296 | 296 | ||
297 | /* Device is special in that it can be the last arg specified | 297 | /* Device is special in that it can be the last arg specified |
298 | * and doesn't requre the dev/device keyword in that case. */ | 298 | * and doesn't require the dev/device keyword in that case. */ |
299 | if (!rt->rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) { | 299 | if (!rt->rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) { |
300 | /* Don't use args_m1 here since args may have changed! */ | 300 | /* Don't use args_m1 here since args may have changed! */ |
301 | rt->rt_dev = args[-1]; | 301 | rt->rt_dev = args[-1]; |
@@ -416,7 +416,7 @@ static NOINLINE void INET6_setroute(int action, char **args) | |||
416 | } | 416 | } |
417 | 417 | ||
418 | /* Device is special in that it can be the last arg specified | 418 | /* Device is special in that it can be the last arg specified |
419 | * and doesn't requre the dev/device keyword in that case. */ | 419 | * and doesn't require the dev/device keyword in that case. */ |
420 | if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) { | 420 | if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) { |
421 | /* Don't use args_m1 here since args may have changed! */ | 421 | /* Don't use args_m1 here since args may have changed! */ |
422 | devname = args[-1]; | 422 | devname = args[-1]; |