From c2fde848d9614158ebd670b9151cf89c58518816 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Jan 2001 14:28:08 +0000 Subject: [PATCH] Fixed the spelling of the newly added syslog messages. --- subscribe.c | 4 ++-- unsubscribe.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/subscribe.c b/subscribe.c index f0aff77..f03aba0 100644 --- a/subscribe.c +++ b/subscribe.c @@ -179,7 +179,7 @@ AddAddress(struct Mail * MailStruct, if (isSubscribed(listname, address, NULL, NULL, FALSE) == TRUE) { - syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" rejected because the " \ + syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" rejected, because the " \ "address is already on the list.", MailStruct->From, address, listname); /* Notify the originator, that the address is already a @@ -215,7 +215,7 @@ AddAddress(struct Mail * MailStruct, char* command; char* cookie; - syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" deferred because the " \ + syslog(LOG_INFO, "%s: Attempt to subscribe \"%s\" to list \"%s\" deferred, because the " \ "request must be acknowledged first.", MailStruct->From, address, listname); command = text_easy_sprintf("subscribe %s %s", address, listname); diff --git a/unsubscribe.c b/unsubscribe.c index d9122b7..594d830 100644 --- a/unsubscribe.c +++ b/unsubscribe.c @@ -179,7 +179,7 @@ DeleteAddress(struct Mail * MailStruct, if (isSubscribed(listname, address, &list, &p, FALSE) == FALSE) { - syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" rejected because the " \ + syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" rejected, because the " \ "address is not on the list.", MailStruct->From, address, listname); /* Notify the originator, that the address is not subscribed at @@ -218,7 +218,7 @@ DeleteAddress(struct Mail * MailStruct, char* command; char* cookie; - syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" deferred because the " \ + syslog(LOG_INFO, "%s: Attempt to unsubscribe \"%s\" from list \"%s\" deferred, because the " \ "request must be acknowledged first.", MailStruct->From, address, listname); command = text_easy_sprintf("unsubscribe %s %s", address, listname);