summaryrefslogtreecommitdiff
path: root/asn1/pkcs12
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-06-21 07:46:55 +0200
committerAnders Broman <a.broman58@gmail.com>2015-06-21 22:43:16 +0000
commit31f54593dc5e42f411aa6f5c11eaf43b5fd29bd9 (patch)
tree000a14bc8d1d9ef7212ace7bbcd7512a86b867e5 /asn1/pkcs12
parentebc8ec83fdaefd6253aeb8db587f2d3b413fc340 (diff)
downloadwireshark-31f54593dc5e42f411aa6f5c11eaf43b5fd29bd9.tar.gz
PKCS12: fix warning about unused parameter when don't build with LIBGCRYPT
Change-Id: I7cc47f811d6c090aa2be54d3d92361966d011ccd Reviewed-on: https://code.wireshark.org/review/9002 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'asn1/pkcs12')
-rw-r--r--asn1/pkcs12/packet-pkcs12-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/pkcs12/packet-pkcs12-template.c b/asn1/pkcs12/packet-pkcs12-template.c
index 797dffce8b..38067b46f4 100644
--- a/asn1/pkcs12/packet-pkcs12-template.c
+++ b/asn1/pkcs12/packet-pkcs12-template.c
@@ -218,7 +218,7 @@ void PBE_reset_parameters(void)
salt = NULL;
}
-int PBE_decrypt_data(const char *object_identifier_id_param, tvbuff_t *encrypted_tvb, asn1_ctx_t *actx, proto_item *item)
+int PBE_decrypt_data(const char *object_identifier_id_param _U_, tvbuff_t *encrypted_tvb _U_, asn1_ctx_t *actx _U_, proto_item *item _U_)
{
#ifdef HAVE_LIBGCRYPT
const char *encryption_algorithm;