aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-09-17 20:58:22 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-09-17 20:58:22 +0200
commit7373759947ac54e9a9b3b1a26572cca5cdc9a0e6 (patch)
treed2e9da2955a8eac11cc27e0dd8433b13ac84999e /shell/ash.c
parent7bc3d39695728c6257a95bc2d75e80d3e2431c8b (diff)
downloadbusybox-w32-7373759947ac54e9a9b3b1a26572cca5cdc9a0e6.tar.gz
busybox-w32-7373759947ac54e9a9b3b1a26572cca5cdc9a0e6.tar.bz2
busybox-w32-7373759947ac54e9a9b3b1a26572cca5cdc9a0e6.zip
fix "aloc" -> "alloc" typos
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 790367bd8..bffb4a245 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11663,7 +11663,7 @@ parsebackq: {
11663 * FIXME: this can allocate very large block on stack and SEGV. 11663 * FIXME: this can allocate very large block on stack and SEGV.
11664 * Example: 11664 * Example:
11665 * echo "..<100kbytes>..`true` $(true) `true` ..." 11665 * echo "..<100kbytes>..`true` $(true) `true` ..."
11666 * alocates 100kb for every command subst. With about 11666 * allocates 100kb for every command subst. With about
11667 * a hundred command substitutions stack overflows. 11667 * a hundred command substitutions stack overflows.
11668 * With larger prepended string, SEGV happens sooner. 11668 * With larger prepended string, SEGV happens sooner.
11669 */ 11669 */