diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-12-13 21:48:22 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-12-13 21:48:22 +0000 |
commit | f6e633f628525ef790e8432e6a34a6faf8fb7142 (patch) | |
tree | 6f91021fb8cd9a6dcd9dd90e1a9382bf53898a85 /usr.sbin | |
parent | b5c871dff0fbf5048fa94a8a3f32d3637a1866fa (diff) |
typo
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index ec3043506a6..d3794fdaeb0 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.40 2009/11/13 20:34:51 chl Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.41 2009/12/13 21:48:21 jacekm Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -274,7 +274,7 @@ show_stats_output(struct imsg *imsg) stats = imsg->data; printf("mda.errors.write_system=%zd\n", stats->mda.write_error); - printf("mta.sessions=%zd\n", stats->smtp.sessions); + printf("mta.sessions=%zd\n", stats->mta.sessions); printf("mta.sessions.active=%zd\n", stats->mta.sessions_active); printf("parent.uptime=%d\n", time(NULL) - stats->parent.start); |