diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-09 01:40:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-09 01:40:15 +0000 |
commit | f50caac53c0e37111866316dfcb7e944fc21cf2e (patch) | |
tree | 1918a64132a91b2c8d8dae6b7e5c19818ffbf1b6 | |
parent | a2218dd862d392853a7d30a764acda30a478ca3f (diff) | |
download | busybox-w32-f50caac53c0e37111866316dfcb7e944fc21cf2e.tar.gz busybox-w32-f50caac53c0e37111866316dfcb7e944fc21cf2e.tar.bz2 busybox-w32-f50caac53c0e37111866316dfcb7e944fc21cf2e.zip |
hush: typo in comment
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 3959da1ea..543f1fe67 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -2191,7 +2191,7 @@ static void re_execute_shell(const char *s, int is_heredoc) | |||
2191 | argv[1] = (char *) "-<"; | 2191 | argv[1] = (char *) "-<"; |
2192 | argv[2] = (char *) s; | 2192 | argv[2] = (char *) s; |
2193 | argv[3] = NULL; | 2193 | argv[3] = NULL; |
2194 | pp = &argv[3]; /* used as pointer to empty environmaent */ | 2194 | pp = &argv[3]; /* used as pointer to empty environment */ |
2195 | goto do_exec; | 2195 | goto do_exec; |
2196 | } | 2196 | } |
2197 | 2197 | ||