fix shell escaping bug in append() function
[openwrt.git] / package / base-files / default / etc / nvram.sh
index f1170ac..ddbd88b 100644 (file)
@@ -1,11 +1,13 @@
 #!/bin/ash
+# Copyright (C) 2006 OpenWrt.org
+
 
 # allow env to override nvram
 nvram () {
   if [ -x /usr/sbin/nvram ]; then
     case $1 in
-      get) eval "echo \${$2:-\$(command nvram get $2)}";;
-      *) command nvram $*;;
+      get) eval "echo \${$2:-\$(/usr/sbin/nvram get $2)}";;
+      *) /usr/sbin/nvram $*;;
     esac
   else
     case $1 in
This page took 0.019291 seconds and 4 git commands to generate.