aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-12 17:12:28 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-12 17:12:28 +0000
commita68cb75a2e72303ef4a609cab28d25ccc789d685 (patch)
treec9f1fd8ef0c1d50341c4377ce467c94ec6944881 /libbb
parent0b18cd3d04b17acec73af3d2cafd00c59a3f807f (diff)
downloadbusybox-w32-a68cb75a2e72303ef4a609cab28d25ccc789d685.tar.gz
busybox-w32-a68cb75a2e72303ef4a609cab28d25ccc789d685.tar.bz2
busybox-w32-a68cb75a2e72303ef4a609cab28d25ccc789d685.zip
Applied post 1.9.0 fixes
Diffstat (limited to 'libbb')
-rw-r--r--libbb/lineedit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c
index 69768da30..c23fe3107 100644
--- a/libbb/lineedit.c
+++ b/libbb/lineedit.c
@@ -1315,8 +1315,8 @@ static void win_changed(int nsig)
1315#define CTRL(a) ((a) & ~0x40) 1315#define CTRL(a) ((a) & ~0x40)
1316 1316
1317/* Returns: 1317/* Returns:
1318 * -1 on read errors or EOF, or on bare Ctrl-D. 1318 * -1 on read errors or EOF, or on bare Ctrl-D,
1319 * 0 on ctrl-C, 1319 * 0 on ctrl-C (the line entered is still returned in 'command'),
1320 * >0 length of input string, including terminating '\n' 1320 * >0 length of input string, including terminating '\n'
1321 */ 1321 */
1322int read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st) 1322int read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)