summaryrefslogtreecommitdiffstats
path: root/testsuite/mcast01/test_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/mcast01/test_main.c')
-rw-r--r--testsuite/mcast01/test_main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuite/mcast01/test_main.c b/testsuite/mcast01/test_main.c
index 60519719..ad6c45b7 100644
--- a/testsuite/mcast01/test_main.c
+++ b/testsuite/mcast01/test_main.c
@@ -78,14 +78,15 @@ typedef struct {
} iface_binding;
static void
-set_mcast_route(const char *iface_name)
+set_mcast_route(char *iface_name)
{
+ static char net[] = "224.0.0.0/4";
int exit_code;
char *route[] = {
"route",
"add",
"-net",
- "224.0.0.0/4",
+ net,
"-iface",
iface_name,
NULL