Fix build with gcc
This commit is contained in:
parent
f9cf015025
commit
e5f274b4b0
@ -121,7 +121,7 @@ parse_authfile(const char *path)
|
||||
|
||||
au = calloc(1, sizeof(*au));
|
||||
if (au == NULL)
|
||||
errlog(1, NULL);
|
||||
errlog(1, "calloc failed");
|
||||
|
||||
data = strdup(line);
|
||||
au->login = strsep(&data, "|");
|
||||
|
@ -464,7 +464,7 @@ main(int argc, char **argv)
|
||||
goto skipopts;
|
||||
} else if (strcmp(argv[0], "newaliases") == 0) {
|
||||
logident_base = "dma";
|
||||
setlogident(NULL);
|
||||
setlogident("%s", logident_base);
|
||||
|
||||
if (read_aliases() != 0)
|
||||
errx(1, "could not parse aliases file `%s'", config.aliases);
|
||||
@ -563,7 +563,7 @@ main(int argc, char **argv)
|
||||
skipopts:
|
||||
if (logident_base == NULL)
|
||||
logident_base = "dma";
|
||||
setlogident(NULL);
|
||||
setlogident("%s", logident_base);
|
||||
|
||||
act.sa_handler = sighup_handler;
|
||||
act.sa_flags = 0;
|
||||
@ -595,7 +595,7 @@ main(int argc, char **argv)
|
||||
errlog(1, "could not parse aliases file `%s'", config.aliases);
|
||||
|
||||
if ((sender = set_from(&queue, sender)) == NULL)
|
||||
errlog(1, NULL);
|
||||
errlog(1, "set_from failed");
|
||||
|
||||
if (newspoolf(&queue) != 0)
|
||||
errlog(1, "can not create temp file in `%s'", config.spooldir);
|
||||
|
@ -332,7 +332,7 @@ parse_addrs(struct parse_state *ps, char *s, struct queue *queue)
|
||||
ps->pos = 0;
|
||||
addr = strdup(ps->addr);
|
||||
if (addr == NULL)
|
||||
errlog(1, NULL);
|
||||
errlog(1, "strdup failed");
|
||||
|
||||
if (add_recp(queue, addr, EXPAND_WILDCARD) != 0)
|
||||
errlogx(1, "invalid recipient `%s'", addr);
|
||||
|
Loading…
Reference in New Issue
Block a user