aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnet/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fnet/main.c')
-rw-r--r--src/fnet/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fnet/main.c b/src/fnet/main.c
index 96c4f1478..fc36ae977 100644
--- a/src/fnet/main.c
+++ b/src/fnet/main.c
@@ -87,7 +87,7 @@ printf("\n");
87 else if (argc == 7 && strcmp(argv[1], "create") == 0 && strcmp(argv[2], "veth") == 0) { 87 else if (argc == 7 && strcmp(argv[1], "create") == 0 && strcmp(argv[2], "veth") == 0) {
88 // create veth pair and move one end in the the namespace 88 // create veth pair and move one end in the the namespace
89 net_create_veth(argv[3], argv[4], atoi(argv[6])); 89 net_create_veth(argv[3], argv[4], atoi(argv[6]));
90 // connect the ohter veth end to the bridge ... 90 // connect the other veth end to the bridge ...
91 net_bridge_add_interface(argv[5], argv[3]); 91 net_bridge_add_interface(argv[5], argv[3]);
92 // ... and bring it up 92 // ... and bring it up
93 net_if_up(argv[3]); 93 net_if_up(argv[3]);