diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2008-12-06 14:24:16 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2008-12-06 14:24:16 +0000 |
commit | c89e896cb008706ccc4f7c6d5951eb69e846993d (patch) | |
tree | b4a627499e3b97ebfbbdbfe64a93d67b42f1c9c0 | |
parent | 72402f4184611757f42a5e0a64aabf35e7426618 (diff) |
- fix spelling and grammar, From Nicholas Marriott <nicm__@ntlworld.com>
-rw-r--r-- | usr.sbin/smtpd/store.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/store.c b/usr.sbin/smtpd/store.c index dd12e5c0d51..5a514b7a256 100644 --- a/usr.sbin/smtpd/store.c +++ b/usr.sbin/smtpd/store.c @@ -1,4 +1,4 @@ -/* $OpenBSD: store.c,v 1.6 2008/11/17 21:56:18 chl Exp $ */ +/* $OpenBSD: store.c,v 1.7 2008/12/06 14:24:15 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -169,12 +169,12 @@ store_write_daemon(struct batch *batchp, struct message *messagep) if (fprintf(mboxfp, "Hi !\n\n" "This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail it is\n" - "just a notification to let you know that an error has occured.\n\n") == -1) + "just a notification to let you know that an error has occurred.\n\n") == -1) goto bad; if ((batchp->status & S_BATCH_PERMFAILURE) && fprintf(mboxfp, "You ran into a PERMANENT FAILURE, which means that the e-mail can't\n" - "be delivered to the remote host no matter how much I'll try.\n\n" + "be delivered to the remote host no matter how much I try.\n\n" "Diagnostic:\n" "%s\n\n", batchp->errorline) == -1) goto bad; |