From 000ac53450a0f5988d0ae870229331156a2ea2d6 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 6 Feb 2014 19:04:22 -0500 Subject: [PATCH] LIST returns 215, not 231 --- citadel/modules/nntp/serv_nntp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/modules/nntp/serv_nntp.c b/citadel/modules/nntp/serv_nntp.c index 863685960..d60abd15f 100644 --- a/citadel/modules/nntp/serv_nntp.c +++ b/citadel/modules/nntp/serv_nntp.c @@ -535,7 +535,7 @@ void nntp_list(const char *cmd) { return; } - cprintf("231 list of newsgroups follows\r\n"); + cprintf("215 list of newsgroups follows\r\n"); CtdlGetUser(&CC->user, CC->curr_user); CtdlForEachRoom(nntp_list_backend, &nld); cprintf(".\r\n"); -- 2.30.2