- spelling fixes
This commit is contained in:
@@ -689,7 +689,7 @@ config FETCHMAIL
|
||||
bool "fetchmail"
|
||||
default n
|
||||
help
|
||||
Barebones fetchmail.
|
||||
Barebone fetchmail.
|
||||
|
||||
config FEATURE_FETCHMAIL_APOP
|
||||
bool "Support APOP authentication"
|
||||
@@ -699,11 +699,11 @@ config FEATURE_FETCHMAIL_APOP
|
||||
Support secure APOP authentication.
|
||||
|
||||
config FEATURE_FETCHMAIL_FILTER
|
||||
bool "Pipe thru external filter"
|
||||
bool "Pipe through external filter"
|
||||
default n
|
||||
depends on FETCHMAIL
|
||||
help
|
||||
Support piping incoming messages thru external filter.
|
||||
Support piping incoming messages through external filter.
|
||||
|
||||
config SLATTACH
|
||||
bool "slattach"
|
||||
|
@@ -77,7 +77,7 @@ struct globals {
|
||||
unsigned wrote_out; /* total stdout bytes */
|
||||
unsigned wrote_net; /* total net bytes */
|
||||
#endif
|
||||
/* ouraddr is never NULL and goes thru three states as we progress:
|
||||
/* ouraddr is never NULL and goes through three states as we progress:
|
||||
1 - local address before bind (IP/port possibly zero)
|
||||
2 - local address after bind (port is nonzero)
|
||||
3 - local address after connect??/recv/accept (IP and port are nonzero) */
|
||||
|
@@ -481,12 +481,12 @@ int sendgetmail_main(int argc, char **argv)
|
||||
// make tempnam(dir, salt) respect dir argument
|
||||
unsetenv("TMPDIR");
|
||||
|
||||
// TODO: piping thru external filter argv... if *argv
|
||||
// TODO: piping through external filter argv... if *argv
|
||||
|
||||
// cache fetch command
|
||||
{
|
||||
const char *retr = (opts & OPTF_t) ? "TOP %u 0" : "RETR %u";
|
||||
// loop thru messages
|
||||
// loop through messages
|
||||
for (; nmsg; nmsg--) {
|
||||
int fd;
|
||||
char tmp_name[sizeof("tmp/XXXXXX")];
|
||||
|
@@ -614,7 +614,7 @@ int wget_main(int argc, char **argv)
|
||||
case 206:
|
||||
if (beg_range)
|
||||
break;
|
||||
/*FALLTHRU*/
|
||||
/* fall through */
|
||||
default:
|
||||
/* Show first line only and kill any ESC tricks */
|
||||
buf[strcspn(buf, "\n\r\x1b")] = '\0';
|
||||
@@ -685,7 +685,7 @@ int wget_main(int argc, char **argv)
|
||||
case 331:
|
||||
if (ftpcmd("PASS ", str, sfp, buf) == 230)
|
||||
break;
|
||||
/* FALLTHRU (failed login) */
|
||||
/* fall through (failed login) */
|
||||
default:
|
||||
bb_error_msg_and_die("ftp login: %s", buf+4);
|
||||
}
|
||||
|
Reference in New Issue
Block a user