summaryrefslogtreecommitdiff
path: root/networking/sendmail.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-03-24 02:18:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-03-24 02:18:03 +0000
commitc693840fe81e59a308e0c6e3d2bafae728d1caff (patch)
tree10924edda7796e5242e460364c2f3587f2841c0f /networking/sendmail.c
parent42cc304e9084843ad6b153afaf4b3f6c6528c364 (diff)
downloadbusybox-w32-c693840fe81e59a308e0c6e3d2bafae728d1caff.tar.gz
busybox-w32-c693840fe81e59a308e0c6e3d2bafae728d1caff.tar.bz2
busybox-w32-c693840fe81e59a308e0c6e3d2bafae728d1caff.zip
*: whitespace fixes, no code changes
Diffstat (limited to 'networking/sendmail.c')
-rw-r--r--networking/sendmail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/sendmail.c b/networking/sendmail.c
index 2218f2c19..378c4bb2e 100644
--- a/networking/sendmail.c
+++ b/networking/sendmail.c
@@ -408,7 +408,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv)
408 408
409 // make a random string -- it will delimit message parts 409 // make a random string -- it will delimit message parts
410 srand(monotonic_us()); 410 srand(monotonic_us());
411 boundary = xasprintf("%d-%d-%d", rand(), rand(), rand()); 411 boundary = xasprintf("%d-%d-%d", rand(), rand(), rand());
412 412
413 // put common headers and body start 413 // put common headers and body start
414 printf( 414 printf(
@@ -457,7 +457,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv)
457 printf("\r\n--%s--\r\n" "\r\n", boundary); 457 printf("\r\n--%s--\r\n" "\r\n", boundary);
458 458
459 // leave "put message" mode 459 // leave "put message" mode
460 smtp_check(".", 250); 460 smtp_check(".", 250);
461 // ... and say goodbye 461 // ... and say goodbye
462 smtp_check("QUIT", 221); 462 smtp_check("QUIT", 221);
463 463
@@ -482,7 +482,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv)
482 482
483 // cache postprocess program 483 // cache postprocess program
484 *fargs = *argv; 484 *fargs = *argv;
485 485
486 // authenticate 486 // authenticate
487 if (!(opts & OPT_U)) { 487 if (!(opts & OPT_U)) {
488 //opts |= OPT_U; 488 //opts |= OPT_U;