diff options
author | Denis Vlasenko | 2007-10-18 12:54:39 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-18 12:54:39 +0000 |
commit | f74194e942b7a65117914ecc9ddb62d9b1cc9e82 (patch) | |
tree | 58799a5cb03d0904e26abef1aa8531b925d80cd6 /libbb | |
parent | 03630784374501baa4d6a81144e54aa7601f5e19 (diff) | |
download | busybox-f74194e942b7a65117914ecc9ddb62d9b1cc9e82.zip busybox-f74194e942b7a65117914ecc9ddb62d9b1cc9e82.tar.gz |
xatonum.h: add comment
lineedit: fix typo in comment
httpd: support for proxying connection to other http server
(by Alex Landau <landau_alex@yahoo.com>)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index ccf8ac5..c44a228 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -658,7 +658,7 @@ static int find_match(char *matchBuf, int *len_with_quotes) j = pos_buf[i] + 1; } matchBuf[c] = 0; - /* old lenght matchBuf with quotes symbols */ + /* old length matchBuf with quotes symbols */ *len_with_quotes = j ? j - pos_buf[0] : 0; return command_mode; |