diff options
author | Denis Vlasenko | 2008-03-24 02:18:03 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-24 02:18:03 +0000 |
commit | c693840fe81e59a308e0c6e3d2bafae728d1caff (patch) | |
tree | 10924edda7796e5242e460364c2f3587f2841c0f /networking/sendmail.c | |
parent | 42cc304e9084843ad6b153afaf4b3f6c6528c364 (diff) | |
download | busybox-c693840fe81e59a308e0c6e3d2bafae728d1caff.zip busybox-c693840fe81e59a308e0c6e3d2bafae728d1caff.tar.gz |
*: whitespace fixes, no code changes
Diffstat (limited to 'networking/sendmail.c')
-rw-r--r-- | networking/sendmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/sendmail.c b/networking/sendmail.c index 2218f2c..378c4bb 100644 --- a/networking/sendmail.c +++ b/networking/sendmail.c @@ -408,7 +408,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv) // make a random string -- it will delimit message parts srand(monotonic_us()); - boundary = xasprintf("%d-%d-%d", rand(), rand(), rand()); + boundary = xasprintf("%d-%d-%d", rand(), rand(), rand()); // put common headers and body start printf( @@ -457,7 +457,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv) printf("\r\n--%s--\r\n" "\r\n", boundary); // leave "put message" mode - smtp_check(".", 250); + smtp_check(".", 250); // ... and say goodbye smtp_check("QUIT", 221); @@ -482,7 +482,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv) // cache postprocess program *fargs = *argv; - + // authenticate if (!(opts & OPT_U)) { //opts |= OPT_U; |