From: Jouni Malinen Date: Sun, 5 Jan 2014 12:11:14 +0000 (+0200) Subject: Fix EAP-GPSK server compilation for SHA256 cipher suite X-Git-Tag: hostap_2_1~190 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7271ee8769a0806b0ae28cfa17dc6bf627ba0924;p=thirdparty%2Fhostap.git Fix EAP-GPSK server compilation for SHA256 cipher suite Need to use common EAP_GPSK_SHA256 define for this instead of the server-specific EAP_SERVER_GPSK_SHA256 which was not really used anywhere. Signed-hostap: Jouni Malinen --- diff --git a/hostapd/Android.mk b/hostapd/Android.mk index c6cdecf5a..54ac497b0 100644 --- a/hostapd/Android.mk +++ b/hostapd/Android.mk @@ -352,7 +352,7 @@ ifdef CONFIG_EAP_GPSK L_CFLAGS += -DEAP_SERVER_GPSK OBJS += src/eap_server/eap_server_gpsk.c src/eap_common/eap_gpsk_common.c ifdef CONFIG_EAP_GPSK_SHA256 -L_CFLAGS += -DEAP_SERVER_GPSK_SHA256 +L_CFLAGS += -DEAP_GPSK_SHA256 endif NEED_SHA256=y NEED_AES_OMAC1=y diff --git a/hostapd/Makefile b/hostapd/Makefile index 5bf91ba32..5fd648107 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -332,7 +332,7 @@ ifdef CONFIG_EAP_GPSK CFLAGS += -DEAP_SERVER_GPSK OBJS += ../src/eap_server/eap_server_gpsk.o ../src/eap_common/eap_gpsk_common.o ifdef CONFIG_EAP_GPSK_SHA256 -CFLAGS += -DEAP_SERVER_GPSK_SHA256 +CFLAGS += -DEAP_GPSK_SHA256 endif NEED_SHA256=y NEED_AES_OMAC1=y