diff options
author | 2013-11-29 00:47:04 +0000 | |
---|---|---|
committer | 2013-11-29 00:47:04 +0000 | |
commit | f847569b4a25eda1ab44fe4c5ba6b3eeec43602f (patch) | |
tree | a578595e61093866dc467178bb27cd5c1d861ac1 | |
parent | sync (diff) | |
download | wireguard-openbsd-f847569b4a25eda1ab44fe4c5ba6b3eeec43602f.tar.xz wireguard-openbsd-f847569b4a25eda1ab44fe4c5ba6b3eeec43602f.zip |
fix missing space from line break
-rw-r--r-- | usr.sbin/smtpd/mta.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/mta.c b/usr.sbin/smtpd/mta.c index 0dd3abde268..815537309e1 100644 --- a/usr.sbin/smtpd/mta.c +++ b/usr.sbin/smtpd/mta.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mta.c,v 1.172 2013/11/28 13:13:56 eric Exp $ */ +/* $OpenBSD: mta.c,v 1.173 2013/11/29 00:47:04 tedu Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -935,8 +935,8 @@ mta_on_source(struct mta_relay *relay, struct mta_source *source) mta_source_unref(source); /* from constructor */ } else { - log_warnx("warn: Failed to get source address" - "for %s", mta_relay_to_text(relay)); + log_warnx("warn: Failed to get source address for %s", + mta_relay_to_text(relay)); } if (tree_count(&relay->connectors) == 0) { |