summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd
diff options
context:
space:
mode:
authorGilles Chehade <gilles@cvs.openbsd.org>2012-10-11 21:53:00 +0000
committerGilles Chehade <gilles@cvs.openbsd.org>2012-10-11 21:53:00 +0000
commit336d128958d89481f5da8ff8bd0acb666c0132c0 (patch)
treec63192214f9622cc47c67906edef27a5c44d4335 /usr.sbin/smtpd
parent192c1c49229397ffa7e932dd27b26016dc797340 (diff)
- no need to assign a separator to the last route flag since we're not
going to use it
Diffstat (limited to 'usr.sbin/smtpd')
-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);
}