diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2011-04-14 22:46:39 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2011-04-14 22:46:39 +0000 |
commit | 2641531408e91b374d3bc048faf07da3cf7281e4 (patch) | |
tree | 2f89f951a919a5f6fe0d828a7294d60fd34a657b /usr.sbin/smtpd/smtpd.c | |
parent | 8aa9805c6c6a07e2e443192c06997db291ce8f9f (diff) |
no functionnal change
Diffstat (limited to 'usr.sbin/smtpd/smtpd.c')
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 4aed7f9664e..95e589c0d85 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.119 2011/04/14 20:11:08 gilles Exp $ */ +/* $OpenBSD: smtpd.c,v 1.120 2011/04/14 22:46:38 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -57,7 +57,6 @@ void forkmda(struct smtpd *, struct imsgev *, u_int32_t, struct deliver *); int parent_enqueue_offline(struct smtpd *, char *); int parent_forward_open(char *); -int setup_spool(uid_t, gid_t); int path_starts_with(char *, char *); void fork_peers(struct smtpd *); @@ -492,7 +491,7 @@ main(int argc, char *argv[]) if (env.sc_queue == NULL) errx(1, "could not find queue backend"); - if (!env.sc_queue->setup(&env)) + if (!env.sc_queue->init(&env)) errx(1, "invalid directory permissions"); log_init(debug); |