diff options
| author | Alexander Barton <alex@barton.de> | 2005-11-21 15:06:37 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2005-11-21 15:06:37 +0000 |
| commit | 6b212491512aa0c01e263ce87fac1e6b671d78c9 (patch) | |
| tree | 3dd20e98f6ed5845f3aaa69de893e72082c37db5 | |
| parent | 4f8d646e2afb3588969d285f577ada8f3fb6641b (diff) | |
| download | ngircd-6b212491512aa0c01e263ce87fac1e6b671d78c9.tar.gz ngircd-6b212491512aa0c01e263ce87fac1e6b671d78c9.zip | |
Remove direct call of Conf_UnsetServer(): it's already indirectly called
by Conn_Close() a few lines above.
| -rw-r--r-- | src/ngircd/conn.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 0c3f4fce..e2b90a23 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -17,7 +17,7 @@ #include "portab.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 <assert.h> @@ -158,9 +158,6 @@ cb_connserver(int sock, UNUSED short what) Conn_Close(idx, "Can't connect!", NULL, false); - /* Set the timestamp of the last connect attempt */ - Conf_UnsetServer(idx); - return; } |