repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 864015fa3ff42a026b90e39f73fb9d5f6eaab826:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 864015fa3ff42a026b90e39f73fb9d5f6eaab826
Author: Alexander Barton 
Date:   Tue Aug 28 22:09:06 2012 +0200

    NoticeAuth: make sure messages are flushed immediately

diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
index fd175971a16d9b48a546efa94df84dc8ff39ebc5..
index ..8fd162b7122eee89c37ca319e8d2cafb71ebb16a 100644
--- a/src/ngircd/conn.c
+++ b/src/ngircd/conn.c
@@ -1508,6 +1508,7 @@ New_Connection(int Sock)
 #endif
 				(void)Conn_WriteStr(new_sock,
 					"NOTICE AUTH :*** Looking up your hostname");
+			(void)Handle_Write(new_sock);
 		}
 		Resolve_Addr(&My_Connections[new_sock].proc_stat, &new_addr,
 			     identsock, cb_Read_Resolver_Result);
@@ -2295,6 +2296,10 @@ cb_Read_Resolver_Result( int r_fd, UNUSED short events )
 					"NOTICE AUTH :*** No ident response");
 		}
 #endif
+
+		if (Conf_NoticeAuth)
+			(void)Handle_Write(i);
+
 		Class_HandleServerBans(c);
 	}
 #ifdef DEBUG

-----END OF PAGE-----