mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
This fixes the following compile errors after the wolfssl 4.5.0 update:
LD wpa_cli
../src/crypto/tls_wolfssl.c: In function 'tls_match_alt_subject':
../src/crypto/tls_wolfssl.c:610:11: error: 'GEN_EMAIL' undeclared (first use in this function); did you mean 'ENAVAIL'?
type = GEN_EMAIL;
^~~~~~~~~
ENAVAIL
../src/crypto/tls_wolfssl.c:610:11: note: each undeclared identifier is reported only once for each function it appears in
../src/crypto/tls_wolfssl.c:613:11: error: 'GEN_DNS' undeclared (first use in this function)
type = GEN_DNS;
^~~~~~~
../src/crypto/tls_wolfssl.c:616:11: error: 'GEN_URI' undeclared (first use in this function)
type = GEN_URI;
^~~~~~~
../src/crypto/tls_wolfssl.c: In function 'wolfssl_tls_cert_event':
../src/crypto/tls_wolfssl.c:902:20: error: 'GEN_EMAIL' undeclared (first use in this function); did you mean 'ENAVAIL'?
if (gen->type != GEN_EMAIL &&
^~~~~~~~~
ENAVAIL
../src/crypto/tls_wolfssl.c:903:20: error: 'GEN_DNS' undeclared (first use in this function)
gen->type != GEN_DNS &&
^~~~~~~
../src/crypto/tls_wolfssl.c:904:20: error: 'GEN_URI' undeclared (first use in this function)
gen->type != GEN_URI)
^~~~~~~
Makefile:2029: recipe for target '../src/crypto/tls_wolfssl.o' failed
Fixes:
|
||
|---|---|---|
| .. | ||
| 004-mesh-use-setup-completion-callback-to-complete-mesh-.patch | ||
| 005-mesh-update-ssid-frequency-as-pri-sec-channel-switch.patch | ||
| 006-mesh-inform-kernel-driver-DFS-handler-in-userspace.patch | ||
| 007-mesh-apply-channel-attributes-before-running-Mesh.patch | ||
| 011-mesh-Allow-DFS-channels-to-be-selected-if-dfs-is-ena.patch | ||
| 013-mesh-do-not-allow-pri-sec-channel-switch.patch | ||
| 015-mesh-do-not-use-offchan-mgmt-tx-on-DFS.patch | ||
| 016-mesh-fix-channel-switch-error-during-CAC.patch | ||
| 018-mesh-make-forwarding-configurable.patch | ||
| 051-wpa_supplicant-fix-race-condition-in-mesh-mpm-new-pe.patch | ||
| 067-0001-AP-Silently-ignore-management-frame-from-unexpected-.patch | ||
| 070-driver_nl80211-fix-WMM-queue-mapping-for-regulatory-.patch | ||
| 071-driver_nl80211-fix-regulatory-limits-for-wmm-cwmin-c.patch | ||
| 090-wolfssl-fix-crypto_bignum_sum.patch | ||
| 091-0001-wolfssl-Fix-compiler-warnings-on-size_t-printf-forma.patch | ||
| 091-0002-wolfssl-Fix-crypto_bignum_rand-implementation.patch | ||
| 091-0003-wolfssl-Do-not-hardcode-include-directory-in-wpa_sup.patch | ||
| 100-daemonize_fix.patch | ||
| 110-wolfssl-compile-fix.patch | ||
| 200-multicall.patch | ||
| 300-noscan.patch | ||
| 301-mesh-noscan.patch | ||
| 310-rescan_immediately.patch | ||
| 320-optional_rfkill.patch | ||
| 330-nl80211_fix_set_freq.patch | ||
| 340-reload_freq_change.patch | ||
| 341-mesh-ctrl-iface-channel-switch.patch | ||
| 350-nl80211_del_beacon_bss.patch | ||
| 360-ctrl_iface_reload.patch | ||
| 370-ap_sta_support.patch | ||
| 380-disable_ctrl_iface_mib.patch | ||
| 381-hostapd_cli_UNKNOWN-COMMAND.patch | ||
| 390-wpa_ie_cap_workaround.patch | ||
| 400-wps_single_auth_enc_type.patch | ||
| 410-limit_debug_messages.patch | ||
| 420-indicate-features.patch | ||
| 430-hostapd_cli_ifdef.patch | ||
| 431-wpa_cli_ifdef.patch | ||
| 432-missing-typedef.patch | ||
| 450-scan_wait.patch | ||
| 460-wpa_supplicant-add-new-config-params-to-be-used-with.patch | ||
| 461-driver_nl80211-use-new-parameters-during-ibss-join.patch | ||
| 463-add-mcast_rate-to-11s.patch | ||
| 464-fix-mesh-obss-check.patch | ||
| 470-survey_data_fallback.patch | ||
| 500-lto-jobserver-support.patch | ||
| 599-wpa_supplicant-fix-warnings.patch | ||
| 600-ubus_support.patch | ||