From c2146fa9afeaef96b2ee4260ce54380eb721b7d2 Mon Sep 17 00:00:00 2001 From: "Kurt A. Shoens" Date: Thu, 29 Jul 1982 06:18:13 -0800 Subject: [PATCH] added extra doignore argument to send() calls SCCS-vsn: usr.bin/mail/quit.c 2.4 --- usr/src/usr.bin/mail/quit.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/usr/src/usr.bin/mail/quit.c b/usr/src/usr.bin/mail/quit.c index 330fa4ff3b..4006bf4301 100644 --- a/usr/src/usr.bin/mail/quit.c +++ b/usr/src/usr.bin/mail/quit.c @@ -9,7 +9,7 @@ * Termination processing. */ -static char *SccsId = "@(#)quit.c 2.3 %G%"; +static char *SccsId = "@(#)quit.c 2.4 %G%"; /* * Save all of the undetermined messages at the top of "mbox" @@ -192,7 +192,7 @@ quit() } for (mp = &message[0]; mp < &message[msgCount]; mp++) if (mp->m_flag & MBOX) - if (send(mp, obuf) < 0) { + if (send(mp, obuf, 0) < 0) { perror(mbox); fclose(ibuf); fclose(obuf); @@ -274,7 +274,6 @@ newmail: * saved. On any error, just return -1. Else return 0. * Incorporate the any new mail that we found. */ - writeback(res) register FILE *res; { @@ -295,7 +294,7 @@ writeback(res) for (mp = &message[0]; mp < &message[msgCount]; mp++) if ((mp->m_flag&MPRESERVE)||(mp->m_flag&MTOUCH)==0) { p++; - if (send(mp, obuf) < 0) { + if (send(mp, obuf, 0) < 0) { perror(mailname); fclose(obuf); return(-1); -- 2.20.1