summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-26 23:29:37 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-26 23:29:37 +0000
commitcedd0cb8b80c2e6559213c2373417dd56f04094a (patch)
treeef60b4dd39935b68fca6a5dacb340652ad9b53ea /apps
parentaf35036b945cb0f47c68bb47d9316500d12c6913 (diff)
downloadnuttx-cedd0cb8b80c2e6559213c2373417dd56f04094a.tar.gz
nuttx-cedd0cb8b80c2e6559213c2373417dd56f04094a.tar.bz2
nuttx-cedd0cb8b80c2e6559213c2373417dd56f04094a.zip
More patches/bugfixes from Kate
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5056 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/ChangeLog.txt2
-rw-r--r--apps/nshlib/nsh_parse.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 6c151ae50..0f60338a4 100755
--- a/apps/ChangeLog.txt
+++ b/apps/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/apps/nshlib/nsh_parse.c b/apps/nshlib/nsh_parse.c
index 165f842fc..ba597a062 100644
--- a/apps/nshlib/nsh_parse.c
+++ b/apps/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 <local-path>] <url>" },
# endif
#endif