1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 12:56:18 +00:00

Remove direct call of Conf_UnsetServer(): it's already indirectly called

by Conn_Close() a few lines above.
This commit is contained in:
Alexander Barton 2005-11-21 15:06:37 +00:00
parent 4f8d646e2a
commit 6b21249151

View File

@ -17,7 +17,7 @@
#include "portab.h" #include "portab.h"
#include "io.h" #include "io.h"
static char UNUSED id[] = "$Id: conn.c,v 1.184 2005/10/11 19:29:23 alex Exp $"; static char UNUSED id[] = "$Id: conn.c,v 1.185 2005/11/21 15:06:37 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@ -158,9 +158,6 @@ cb_connserver(int sock, UNUSED short what)
Conn_Close(idx, "Can't connect!", NULL, false); Conn_Close(idx, "Can't connect!", NULL, false);
/* Set the timestamp of the last connect attempt */
Conf_UnsetServer(idx);
return; return;
} }