Remove ^M on line endings.

This commit is contained in:
Jilles Tjoelker 2008-04-13 17:54:23 +02:00
parent 96d2a6f437
commit 8bd5767b95
20 changed files with 340 additions and 340 deletions

View file

@ -215,12 +215,12 @@ quote_max(struct Client *source_p, int newval)
{
if(newval > 0)
{
if(newval > maxconnections - MAX_BUFFER)
{
sendto_one_notice(source_p,
":You cannot set MAXCLIENTS to > %d",
maxconnections - MAX_BUFFER);
return;
if(newval > maxconnections - MAX_BUFFER)
{
sendto_one_notice(source_p,
":You cannot set MAXCLIENTS to > %d",
maxconnections - MAX_BUFFER);
return;
}
if(newval < 32)