diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2003-08-24 23:20:20 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2003-08-24 23:20:20 +0000 |
commit | 4d8f14af44790d76a91c6e11ea4114960782f4eb (patch) | |
tree | 42fd9932ea205887bca0951c91cc14434ce2dfee /libexec | |
parent | 1d36f62b5a7183992bb89b418a92ffb763d03d24 (diff) |
missing colon in syslog msg (cosmetic)
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/spamd/spamd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c index 42c7dd2a33a..c398af9ffc1 100644 --- a/libexec/spamd/spamd.c +++ b/libexec/spamd/spamd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd.c,v 1.38 2003/08/23 21:22:34 dhartmei Exp $ */ +/* $OpenBSD: spamd.c,v 1.39 2003/08/24 23:20:19 dhartmei Exp $ */ /* * Copyright (c) 2002 Theo de Raadt. All rights reserved. @@ -537,7 +537,7 @@ closecon(struct con *cp) time_t t; time(&t); - syslog_r(LOG_INFO, &sdata, "%s disconnected after %ld seconds.", + syslog_r(LOG_INFO, &sdata, "%s: disconnected after %ld seconds.", cp->addr, (long)(t - cp->s)); if (debug > 0) printf("%s connected for %ld seconds.\n", cp->addr, |