From 0389a1297d65321a882ea0dcc69f4de4e3bcb169 Mon Sep 17 00:00:00 2001 From: San Mehat Date: Wed, 13 May 2009 12:01:52 -0700 Subject: [PATCH] toolbox: Make that 'pointopoint' instead of 'pointtopoint' Signed-off-by: San Mehat --- toolbox/ifconfig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolbox/ifconfig.c b/toolbox/ifconfig.c index 1de362f7c..dff183e88 100644 --- a/toolbox/ifconfig.c +++ b/toolbox/ifconfig.c @@ -126,9 +126,9 @@ int ifconfig_main(int argc, char *argv[]) while(argc > 0){ if(!strcmp(argv[0], "up")) { setflags(s, &ifr, IFF_UP, 0); - } else if(!strcmp(argv[0], "-pointtopoint")) { + } else if(!strcmp(argv[0], "-pointopoint")) { setflags(s, &ifr, IFF_POINTOPOINT, 1); - } else if(!strcmp(argv[0], "pointtopoint")) { + } else if(!strcmp(argv[0], "pointopoint")) { argc--, argv++; if (0 == argc) { errno = EINVAL;