diff --git a/ChangeLog.txt b/ChangeLog.txt index 6c151ae50..0f60338a4 100755 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -283,4 +283,6 @@ * apps/netutils/thttpd/thttpd_cgi.c: Missing NULL in argv[] list (contributed by Kate). + * apps/nshlib/nsh_parse.c: CONFIG_NSH_DISABLE_WGET not CONFIG_NSH_DISABLE_GET + in one location (found by Kate). diff --git a/nshlib/nsh_parse.c b/nshlib/nsh_parse.c index 165f842fc..ba597a062 100644 --- a/nshlib/nsh_parse.c +++ b/nshlib/nsh_parse.c @@ -370,7 +370,7 @@ static const struct cmdmap_s g_cmdmap[] = #endif #if defined(CONFIG_NET_TCP) && CONFIG_NFILE_DESCRIPTORS > 0 -# ifndef CONFIG_NSH_DISABLE_GET +# ifndef CONFIG_NSH_DISABLE_WGET { "wget", cmd_wget, 2, 4, "[-o ] " }, # endif #endif