Use err(3).

This commit is contained in:
Philippe Charnier 1997-07-24 06:56:33 +00:00
parent a4453045b0
commit 0e11b68bdd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27643
3 changed files with 11 additions and 10 deletions

View File

@ -179,7 +179,7 @@ hfield(field, mp)
while (lc > 0) {
if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
return oldhfield;
if (hfield = ishfield(linebuf, colon, field))
if ((hfield = ishfield(linebuf, colon, field)) != NULL)
oldhfield = save2str(hfield, oldhfield);
}
return oldhfield;
@ -572,7 +572,7 @@ name1(mp, reptype)
if (reptype == 0 && (cp = hfield("sender", mp)) != NOSTR)
return cp;
ibuf = setinput(mp);
namebuf[0] = 0;
namebuf[0] = '\0';
if (readline(ibuf, linebuf, LINESIZE) < 0)
return(savestr(namebuf));
newname:

View File

@ -70,8 +70,7 @@ setptr(ibuf)
(void)sprintf(linebuf, "%s/mail.XXXXXX", tmpdir);
if ((c = mkstemp(linebuf)) == -1 ||
(mestmp = Fdopen(c, "r+")) == NULL) {
(void)fprintf(stderr, "mail: can't open %s\n", linebuf);
exit(1);
errx(1, "can't open %s", linebuf);
}
(void)unlink(linebuf);
@ -194,7 +193,7 @@ setinput(mp)
fflush(otf);
if (fseek(itf, (long)positionof(mp->m_block, mp->m_offset), 0) < 0) {
perror("fseek");
panic("temporary file seek");
panic("Temporary file seek");
}
return (itf);
}

View File

@ -32,11 +32,15 @@
*/
#ifndef lint
#if 0
static char sccsid[] = "@(#)temp.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
"$Id$";
#endif /* not lint */
#include "rcv.h"
#include <errno.h>
#include <err.h>
#include "extern.h"
/*
@ -62,10 +66,8 @@ tinit()
tmpdir = _PATH_TMP;
else {
len = strlen(tmpdir);
if ((cp = malloc(len + 2)) == NULL) {
(void)fprintf(stderr, "mail: %s\n", strerror(errno));
exit (1);
}
if ((cp = malloc(len + 2)) == NULL)
err(1, NULL);
(void)strcpy(cp, tmpdir);
cp[len] = '/';
cp[len + 1] = '\0';