mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 18:13:49 +01:00
26 lines
781 B
Diff
26 lines
781 B
Diff
From d52016bf6f16eac0c3a4b895707368ee8a3babea Mon Sep 17 00:00:00 2001
|
|
From: Gunar Schorcht <gunar@schorcht.net>
|
|
Date: Sun, 2 Mar 2025 17:15:03 +0100
|
|
Subject: [PATCH 27/28] wpa_supplicant: fix include to find correct base64.h
|
|
|
|
---
|
|
components/wpa_supplicant/src/tls/tlsv1_cred.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/components/wpa_supplicant/src/tls/tlsv1_cred.c b/components/wpa_supplicant/src/tls/tlsv1_cred.c
|
|
index 0cee09749d..4d5d9d0b29 100644
|
|
--- a/components/wpa_supplicant/src/tls/tlsv1_cred.c
|
|
+++ b/components/wpa_supplicant/src/tls/tlsv1_cred.c
|
|
@@ -9,7 +9,7 @@
|
|
#include "includes.h"
|
|
|
|
#include "common.h"
|
|
-#include "base64.h"
|
|
+#include "utils/base64.h"
|
|
#include "crypto/crypto.h"
|
|
#include "crypto/sha1.h"
|
|
#include "pkcs5.h"
|
|
--
|
|
2.34.1
|
|
|