summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPierre Aubert <p.aubert@staubli.com>2013-10-08 14:20:27 +0200
committerTom Rini <trini@ti.com>2013-11-08 15:25:14 -0500
commit9a8323311ca500579b86905fcf539f17c193ce25 (patch)
tree1dd161d5401fb5cf2a5c7c89ea683a34486828ae /lib
parent2a19de42eca547ceff341cce3810f3a9d795ef96 (diff)
downloadblackbird-obmc-uboot-9a8323311ca500579b86905fcf539f17c193ce25.tar.gz
blackbird-obmc-uboot-9a8323311ca500579b86905fcf539f17c193ce25.zip
env: fix the env export varname
The env export command doesn't export the first variable of the list since commit 5a31ea04c9ee5544fbb70ad7597ea4b294840eab "env grep" - reimplement command using hexport_r() Signed-off-by: Pierre Aubert <p.aubert@staubli.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/hashtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hashtable.c b/lib/hashtable.c
index c5a2b08bec..4356b234ec 100644
--- a/lib/hashtable.c
+++ b/lib/hashtable.c
@@ -564,7 +564,7 @@ static int match_entry(ENTRY *ep, int flag,
int arg;
void *priv = NULL;
- for (arg = 1; arg < argc; ++arg) {
+ for (arg = 0; arg < argc; ++arg) {
#ifdef CONFIG_REGEX
struct slre slre;
OpenPOWER on IntegriCloud