eapol/eapol_framework/eapol_symbian/eap_server/src/EapServer.cpp
changeset 27 9660a5eb236f
parent 26 9abfd4f00d37
child 34 ad1f037f1ac2
--- a/eapol/eapol_framework/eapol_symbian/eap_server/src/EapServer.cpp	Mon May 24 20:32:47 2010 +0300
+++ b/eapol/eapol_framework/eapol_symbian/eap_server/src/EapServer.cpp	Thu May 27 10:23:43 2010 +0300
@@ -16,7 +16,7 @@
 */
 
 /*
-* %version: 30 %
+* %version: 31 %
 */
 
 #include "EapServer.h"
@@ -391,9 +391,9 @@
 			(EAPL("CEapServer::StopL(): aSession=0x%08x calls CancelReceive()\n"),
 			aSession));
 
-		if (dynamic_cast<CEapSession *>(aSession) != NULL)
+		if (static_cast<CEapSession *>(aSession) != NULL)
 			{
-			dynamic_cast<CEapSession *>(aSession)->CancelReceive();
+			static_cast<CEapSession *>(aSession)->CancelReceive();
 			}
 	}
 }