diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2009-02-10 14:31:27 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-02-10 14:31:27 +0200 |
commit | 4225097c5a22db0223207bb318d93ecbff924a58 (patch) | |
tree | 81538375d40e194c3969a463d2302ce31b626116 | |
parent | e1b525c3560614cc56c85b7d060f540900c4da34 (diff) | |
download | external_wpa_supplicant_8_ti-4225097c5a22db0223207bb318d93ecbff924a58.zip external_wpa_supplicant_8_ti-4225097c5a22db0223207bb318d93ecbff924a58.tar.gz external_wpa_supplicant_8_ti-4225097c5a22db0223207bb318d93ecbff924a58.tar.bz2 |
Fix test-sha256 build
-rw-r--r-- | wpa_supplicant/Makefile | 2 | ||||
-rw-r--r-- | wpa_supplicant/tests/test_sha256.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 5552443..d4ad424 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -1199,7 +1199,7 @@ test-sha1: $(TEST_SHA1_OBJS) ./test-sha1 rm test-sha1 -TEST_SHA256_OBJS = ../src/crypto/sha256.o ../src/crypto/md5.o tests/test_sha256.o ../src/crypto/crypto_openssl.o +TEST_SHA256_OBJS = ../src/crypto/sha256.o ../src/crypto/md5.o tests/test_sha256.o ../src/utils/os_unix.o ../src/crypto/crypto_openssl.o test-sha256: $(TEST_SHA256_OBJS) $(LDO) $(LDFLAGS) -o $@ $(TEST_SHA256_OBJS) $(LIBS) ./test-sha256 diff --git a/wpa_supplicant/tests/test_sha256.c b/wpa_supplicant/tests/test_sha256.c index 161533e..7dc460d 100644 --- a/wpa_supplicant/tests/test_sha256.c +++ b/wpa_supplicant/tests/test_sha256.c @@ -323,7 +323,8 @@ int main(int argc, char *argv[]) } printf("Test IEEE 802.11r KDF\n"); - sha256_prf("abc", 3, "KDF test", "data", 4, hash, sizeof(hash)); + sha256_prf((u8 *) "abc", 3, "KDF test", (u8 *) "data", 4, + hash, sizeof(hash)); /* TODO: add proper test case for this */ return errors; |