From 859f5e988794be9d1077f47cdeafa9a2e00b2a4e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 15 Jan 2001 18:47:32 +0000 Subject: [PATCH] The call to queue_command() had the command wrong. --- subscribe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subscribe.c b/subscribe.c index 598fa71..414af24 100644 --- a/subscribe.c +++ b/subscribe.c @@ -179,7 +179,7 @@ AddAddress(struct Mail * MailStruct, { /* Require confirmation. */ - char* command = text_easy_sprintf("unsubscribe %s %s", address, listname); + char* command = text_easy_sprintf("subscribe %s %s", address, listname); char* cookie = queue_command(MailStruct, command); /* Notify the owner. */