summaryrefslogtreecommitdiffstats
path: root/common/hush.c
diff options
context:
space:
mode:
authorYegor Yefremov <yegorslists@googlemail.com>2020-03-20 10:41:19 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2020-03-23 08:23:15 +0100
commit157e861aa6e93a72018c408e82863a3253550a4d (patch)
treefddafaef7577a9fc2fef49143e5dbdfeb2816815 /common/hush.c
parent8fb804c55b8ddf8edbf73489ee062f7d437adcf6 (diff)
downloadbarebox-157e861aa6e93a72018c408e82863a3253550a4d.tar.gz
barebox-157e861aa6e93a72018c408e82863a3253550a4d.tar.xz
common: fix typos found with codespell
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/hush.c')
-rw-r--r--common/hush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/hush.c b/common/hush.c
index 68c3eccdfc..c24b2c7cd2 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -761,7 +761,7 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
/*
* We do not support pipes in barebox, so pi->num_progs can't
- * be bigger than 1. pi->num_progs == 0 is already catched in
+ * be bigger than 1. pi->num_progs == 0 is already caught in
* the caller, so everything else than 1 is a bug.
*/
BUG_ON(pi->num_progs != 1);
@@ -1689,7 +1689,7 @@ char *shell_expand(char *str)
return res;
}
-/* most recursion does not come through here, the exeception is
+/* most recursion does not come through here, the exception is
* from builtin_source() */
static int parse_stream_outer(struct p_context *ctx, struct in_str *inp, int flag)
{