#739: fixed processing of group command in nserv

This commit is contained in:
Lucas Held
2021-04-15 01:43:29 +02:00
committed by GitHub
parent 1ee8e02586
commit 6dbe6edbab

View File

@@ -172,7 +172,7 @@ void NntpProcessor::Run()
}
else if (!strncasecmp(line, "GROUP ", 6))
{
m_connection->WriteLine(CString::FormatStr("211 0 0 0 %s\r\n", line + 7));
m_connection->WriteLine(CString::FormatStr("211 0 0 0 %s\r\n", line + 6));
}
else if (!strncasecmp(line, "AUTHINFO ", 9))
{