aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/crypto
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2017-09-18 17:57:05 +0200
committerTobias Brunner <tobias@strongswan.org>2017-09-19 13:24:43 +0200
commite0e43229736a84db5af6cb7af9cc2ae03da4c906 (patch)
treef496c2132e700b761b49571254292622a80254bd /src/libstrongswan/crypto
parentd4593353c97347fc9505a5a4fe3cfb66b246874f (diff)
downloadstrongswan-e0e43229736a84db5af6cb7af9cc2ae03da4c906.tar.bz2
strongswan-e0e43229736a84db5af6cb7af9cc2ae03da4c906.tar.xz
configure: Detect type of length parameter for gperf generated function
Since 3.1 gperf uses size_t for the length parameter instead of an unsigned int.
Diffstat (limited to 'src/libstrongswan/crypto')
-rw-r--r--src/libstrongswan/crypto/proposal/proposal_keywords_static.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/crypto/proposal/proposal_keywords_static.h b/src/libstrongswan/crypto/proposal/proposal_keywords_static.h
index bc421dcc5..c046fab92 100644
--- a/src/libstrongswan/crypto/proposal/proposal_keywords_static.h
+++ b/src/libstrongswan/crypto/proposal/proposal_keywords_static.h
@@ -19,7 +19,7 @@
#include "proposal_keywords.h"
const proposal_token_t* proposal_get_token_static(register const char *str,
- register unsigned int len);
+ register GPERF_LEN_TYPE len);
#endif /* PROPOSAL_KEYWORDS_STATIC_H_ */