summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/smtpd/lka_session.c6
-rw-r--r--usr.sbin/smtpd/queue.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/smtpd/lka_session.c b/usr.sbin/smtpd/lka_session.c
index 0e6d2bac7e6..34a4f62c0f6 100644
--- a/usr.sbin/smtpd/lka_session.c
+++ b/usr.sbin/smtpd/lka_session.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lka_session.c,v 1.46 2012/10/13 21:38:27 gilles Exp $ */
+/* $OpenBSD: lka_session.c,v 1.47 2012/10/14 13:31:46 chl Exp $ */
/*
* Copyright (c) 2011 Gilles Chehade <gilles@openbsd.org>
@@ -114,12 +114,12 @@ lka_session_forward_reply(struct forward_req *fwreq, int fd)
if (fd == -1 && fwreq->status) {
/* no .forward, just deliver to local user */
log_debug("lka: no .forward for user %s, just deliver",
- fwreq->as_user),
+ fwreq->as_user);
lka_submit(lks, rule, xn);
}
else if (fd == -1) {
log_debug("lka: opening .forward failed for user %s",
- fwreq->as_user),
+ fwreq->as_user);
lks->ss.code = 530;
lks->flags |= F_ERROR;
}
diff --git a/usr.sbin/smtpd/queue.c b/usr.sbin/smtpd/queue.c
index 6713f8ffee0..9f0eca3ca8c 100644
--- a/usr.sbin/smtpd/queue.c
+++ b/usr.sbin/smtpd/queue.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: queue.c,v 1.137 2012/09/21 12:33:32 eric Exp $ */
+/* $OpenBSD: queue.c,v 1.138 2012/10/14 13:31:46 chl Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -185,7 +185,7 @@ queue_imsg(struct imsgev *iev, struct imsg *imsg)
case IMSG_BATCH_APPEND:
id = *(uint64_t*)(imsg->data);
if (queue_envelope_load(id, &evp) == 0)
- errx(1, "cannot load evp:%016" PRIx64, id),
+ errx(1, "cannot load evp:%016" PRIx64, id);
evp.lasttry = time(NULL);
evp.batch_id = batch_id;
imsg_compose_event(env->sc_ievs[PROC_MTA],