Module Name: src
Committed By: rillig
Date: Sat May 15 19:19:55 UTC 2021
Modified Files:
src/external/bsd/wpa/dist/src/common: dpp.c
Log Message:
wpa: fix Clang build
src/external/bsd/wpa/bin/hostapd/../../dist/src/common/dpp.c:5377:7:
error: format specifies type 'unsigned long' but the argument has type
'os_time_t' (aka 'long long') [-Werror,-Wformat]
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/wpa/dist/src/common/dpp.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/wpa/dist/src/common/dpp.c
diff -u src/external/bsd/wpa/dist/src/common/dpp.c:1.1.1.2 src/external/bsd/wpa/dist/src/common/dpp.c:1.2
--- src/external/bsd/wpa/dist/src/common/dpp.c:1.1.1.2 Mon Mar 1 01:37:55 2021
+++ src/external/bsd/wpa/dist/src/common/dpp.c Sat May 15 19:19:55 2021
@@ -5373,8 +5373,9 @@ int dpp_key_expired(const char *timestam
}
if (now.sec > utime) {
- wpa_printf(MSG_DEBUG, "DPP: Key has expired (%lu < %lu)",
- utime, now.sec);
+ wpa_printf(MSG_DEBUG, "DPP: Key has expired (%llu < %llu)",
+ (unsigned long long)utime,
+ (unsigned long long)now.sec);
return 1;
}