diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-08-06 14:16:38 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-08-06 14:16:38 +0000 |
commit | cfed36f4872ad807b5085bdae7b3024ec263d4d1 (patch) | |
tree | a71819e519f3a2b03067eab4970fa0b448445a48 /usr.sbin/smtpd/bounce.c | |
parent | 9c4ad90e43932a82d8ada4b21e1b107ea94b8252 (diff) |
fix a typo in bounce message t -> to
Diffstat (limited to 'usr.sbin/smtpd/bounce.c')
-rw-r--r-- | usr.sbin/smtpd/bounce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/bounce.c b/usr.sbin/smtpd/bounce.c index 3182a0dce10..d9ceb5a03d0 100644 --- a/usr.sbin/smtpd/bounce.c +++ b/usr.sbin/smtpd/bounce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bounce.c,v 1.2 2009/08/06 14:12:48 gilles Exp $ */ +/* $OpenBSD: bounce.c,v 1.3 2009/08/06 14:16:37 gilles Exp $ */ /* * Copyright (c) 2009 Gilles Chehade <gilles@openbsd.org> @@ -140,7 +140,7 @@ bounce_session_switch(struct smtpd *env, FILE *fp, enum session_state *state, ch fprintf(fp, "\r\n"); fprintf(fp, "Hi !\r\n"); - fprintf(fp, "This is the MAILER-DAEMON, please DO NOT REPLY t this e-mail.\r\n"); + fprintf(fp, "This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.\r\n"); fprintf(fp, "An error has occurred while attempting to deliver a message.\r\n"); fprintf(fp, "\r\n"); fprintf(fp, "Recipient: %s@%s\r\n", messagep->recipient.user, |