aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2020-01-22 23:50:31 +0000
committerGerald Combs <gerald@wireshark.org>2020-01-23 01:02:46 +0000
commitb3c9244c8294a316d640259db605f7b9c12841e6 (patch)
tree4d54603d30864020fe66f27d80e0db3d6bc578f9 /epan/dissectors/asn1
parentbb105ee06c7193ad2b2d6d00560e97c7b4650fe2 (diff)
kerberos: fix -Wcomma warnings
Change-Id: Ie4c3005f1329c3e4a431bc24488963cf0f719f53 Fixes: v3.3.0rc0-407-gbb105ee06c ("packet-kerberos: add decrypt_krb5_krb_cfx_dce() function") Reviewed-on: https://code.wireshark.org/review/35916 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/dissectors/asn1')
-rw-r--r--epan/dissectors/asn1/kerberos/packet-kerberos-template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/asn1/kerberos/packet-kerberos-template.c b/epan/dissectors/asn1/kerberos/packet-kerberos-template.c
index b4973ea383..664501ee7d 100644
--- a/epan/dissectors/asn1/kerberos/packet-kerberos-template.c
+++ b/epan/dissectors/asn1/kerberos/packet-kerberos-template.c
@@ -611,12 +611,12 @@ decrypt_krb5_krb_cfx_dce_cb(const krb5_keyblock *key,
}
iov[2].flags = KRB5_CRYPTO_TYPE_DATA;
- iov[2].data.data = state->gssapi_payload,
+ iov[2].data.data = state->gssapi_payload;
iov[2].data.length = state->gssapi_payload_len;
if (state->gssapi_trailer_ptr != NULL) {
iov[3].flags = KRB5_CRYPTO_TYPE_SIGN_ONLY;
- iov[3].data.data = (guint8 *)(guintptr)state->gssapi_trailer_ptr,
+ iov[3].data.data = (guint8 *)(guintptr)state->gssapi_trailer_ptr;
iov[3].data.length = state->gssapi_trailer_len;
} else {
iov[3].flags = KRB5_CRYPTO_TYPE_EMPTY;