summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgilles <gilles@openbsd.org>2012-10-11 21:52:59 +0000
committergilles <gilles@openbsd.org>2012-10-11 21:52:59 +0000
commit8f0cad31fcc3a9e7a5eef19272b3f9a019938f61 (patch)
treeec58fb8ea3f780fef46459cfb9c1f37107212b20
parent- no need to set imsg_type to IMSG_MFA_CLOSE when we're not going to answer (diff)
downloadwireguard-openbsd-8f0cad31fcc3a9e7a5eef19272b3f9a019938f61.tar.xz
wireguard-openbsd-8f0cad31fcc3a9e7a5eef19272b3f9a019938f61.zip
- no need to assign a separator to the last route flag since we're not
going to use it
-rw-r--r--usr.sbin/smtpd/mta.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/mta.c b/usr.sbin/smtpd/mta.c
index 246cf507eef..20f90bccec1 100644
--- a/usr.sbin/smtpd/mta.c
+++ b/usr.sbin/smtpd/mta.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mta.c,v 1.146 2012/10/10 17:57:05 eric Exp $ */
+/* $OpenBSD: mta.c,v 1.147 2012/10/11 21:52:59 gilles Exp $ */
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -382,7 +382,6 @@ mta_route_to_text(struct mta_route *route)
if (route->flags & ROUTE_BACKUP) {
strlcat(buf, sep, sizeof buf);
- sep = ",";
strlcat(buf, "backup=", sizeof buf);
strlcat(buf, route->backupname, sizeof buf);
}