diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-11-05 12:26:20 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-11-05 12:26:20 +0000 |
commit | 164d4b71fb259d76c2b07b69a6d9b75341131d5b (patch) | |
tree | 26d593f5bd69881f8467ed6071e6d015776838a1 | |
parent | b1c81087121927b86541f31ad3e29ff94b35b53d (diff) |
another log_debug() cleanup
-rw-r--r-- | usr.sbin/smtpd/lka.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/lka.c b/usr.sbin/smtpd/lka.c index 141bb234d5f..a076669296a 100644 --- a/usr.sbin/smtpd/lka.c +++ b/usr.sbin/smtpd/lka.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lka.c,v 1.79 2009/11/05 12:06:41 gilles Exp $ */ +/* $OpenBSD: lka.c,v 1.80 2009/11/05 12:26:19 gilles Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -860,7 +860,8 @@ lka_resolve_alias(struct smtpd *env, char *tag, struct path *path, struct alias sizeof(psave.domain)); } - log_debug("RESOLVED TO %s@%s", path->user, path->domain); + log_debug("lka_resolve_alias: resolved to address: %s@%s", + path->user, path->domain); lka_rcpt_action(env, tag, path); break; |