From 0c935c6d07366c37516a747d6c57574050a18980 Mon Sep 17 00:00:00 2001 From: Kevin Evans Date: Tue, 31 Jan 2023 13:24:55 -0800 Subject: [PATCH] Use -g instead of --gateway --- src/ui/h_prop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/h_prop.c b/src/ui/h_prop.c index 1e9c258..7c50d30 100644 --- a/src/ui/h_prop.c +++ b/src/ui/h_prop.c @@ -142,7 +142,7 @@ const char *build_wh_mkconfig_command(ConfigValues* cv){ } if(cv->gateway!=NULL) { - strcat(cmd_mkconfig, " --gateway "); + strcat(cmd_mkconfig, " -g "); strcat(cmd_mkconfig, cv->gateway); }