Rename EAP server defines from EAP_* to EAP_SERVER_*
[wpasupplicant] / src / tls / tlsv1_server_read.c
index 0e299d8..102e8b2 100644 (file)
@@ -571,7 +571,7 @@ static int tls_process_client_key_exchange_rsa(
 static int tls_process_client_key_exchange_dh_anon(
        struct tlsv1_server *conn, const u8 *pos, const u8 *end)
 {
-#ifdef EAP_FAST
+#ifdef EAP_SERVER_FAST
        const u8 *dh_yc;
        u16 dh_yc_len;
        u8 *shared;
@@ -669,9 +669,9 @@ static int tls_process_client_key_exchange_dh_anon(
        }
 
        return 0;
-#else /* EAP_FAST */
+#else /* EAP_SERVER_FAST */
        return -1;
-#endif /* EAP_FAST */
+#endif /* EAP_SERVER_FAST */
 }