diff options
author | Denys Vlasenko | 2014-01-20 03:41:48 +0100 |
---|---|---|
committer | Denys Vlasenko | 2014-01-20 03:41:48 +0100 |
commit | d9e0c438e10e2155513e5d26498af472c5137d65 (patch) | |
tree | 2c53de479f949ab21f9fa9227e31e01e1aba7b27 /libbb | |
parent | a2dd4ee0e80f50e204f4755e725ae0b1cd07ebad (diff) | |
download | busybox-1_22_1.zip busybox-1_22_1.tar.gz |
Apply post-1.22.0 patches, bump version to 1.22.11_22_1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index b168f1b..8564307 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -1255,7 +1255,9 @@ line_input_t* FAST_FUNC new_line_input_t(int flags) { line_input_t *n = xzalloc(sizeof(*n)); n->flags = flags; +#if MAX_HISTORY > 0 n->max_history = MAX_HISTORY; +#endif return n; } |