commit - 292c7bd4c036fd73c8de074f87239aa8e4fdcb2b
commit + 1d8da4b5258ee1685d0443a182c6106ceb608a23
blob - 783382725e7de9ad68c95083cf905e339a30797c
blob + 87594db7f5b6a8175c979036aac73be2b1b023c9
--- ChangeLog
+++ ChangeLog
ngIRCd CVSHEAD
+ - Fixed a wrong assert() which could cause the daemon to exit spuriously
+ when closing down connections.
- Better logging of decompression errors returned by zlib.
- Servers other than the destination server didn't clean up the invite
list of an "invite-only" channel properly when an INVITE'd user joined.
--
-$Id: ChangeLog,v 1.231 2004/04/25 13:55:34 alex Exp $
+$Id: ChangeLog,v 1.232 2004/04/25 14:06:11 alex Exp $
blob - c40961c795ef8551628dddac68cdc157058da976
blob + d548efc26b6fe48002b1bc4e7dfcc09dae0921d9
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
#include "portab.h"
-static char UNUSED id[] = "$Id: conn.c,v 1.133 2004/03/11 22:16:31 alex Exp $";
+static char UNUSED id[] = "$Id: conn.c,v 1.134 2004/04/25 14:06:12 alex Exp $";
#include "imp.h"
#include <assert.h>
#endif
assert( Idx > NONE );
- assert( My_Connections[Idx].sock > NONE );
/* Is this link already shutting down? */
if( My_Connections[Idx].options & CONN_ISCLOSING )
return;
}
+ assert( My_Connections[Idx].sock > NONE );
+
/* Mark link as "closing" */
My_Connections[Idx].options |= CONN_ISCLOSING;