svn commit: samba r7484 - in branches/SAMBA_4_0/source/kdc: .

tridge at samba.org tridge at samba.org
Sat Jun 11 03:55:40 GMT 2005


Author: tridge
Date: 2005-06-11 03:55:40 +0000 (Sat, 11 Jun 2005)
New Revision: 7484

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7484

Log:
the previous bug can also affect the kdc

Modified:
   branches/SAMBA_4_0/source/kdc/kdc.c


Changeset:
Modified: branches/SAMBA_4_0/source/kdc/kdc.c
===================================================================
--- branches/SAMBA_4_0/source/kdc/kdc.c	2005-06-11 03:53:39 UTC (rev 7483)
+++ branches/SAMBA_4_0/source/kdc/kdc.c	2005-06-11 03:55:40 UTC (rev 7484)
@@ -148,7 +148,8 @@
 	struct kdc_socket *kdc_socket = talloc_get_type(private, struct kdc_socket);
 	if (flags & EVENT_FD_WRITE) {
 		kdc_send_handler(kdc_socket);
-	} else if (flags & EVENT_FD_READ) {
+	} 
+	if (flags & EVENT_FD_READ) {
 		kdc_recv_handler(kdc_socket);
 	}
 }



More information about the samba-cvs mailing list