summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-kerberos.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-07-09 03:25:25 +0000
committerGuy Harris <guy@alum.mit.edu>2005-07-09 03:25:25 +0000
commit8647bbf353ea739dac92ca08e407989febc40e9d (patch)
treee438a8b2246294994d3f75f1af775a2b11e2f2aa /epan/dissectors/packet-kerberos.h
parent34ae8c850f7d868be29504f3894b509d129ec8c8 (diff)
downloadwireshark-8647bbf353ea739dac92ca08e407989febc40e9d.tar.gz
Make a bunch of items in encryption code arrays of guint8, and make some
pointers either "void *" or "guint8 *", to reduce the level of compiler warnings (the data in question is largely binary in those cases). svn path=/trunk/; revision=14886
Diffstat (limited to 'epan/dissectors/packet-kerberos.h')
-rw-r--r--epan/dissectors/packet-kerberos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-kerberos.h b/epan/dissectors/packet-kerberos.h
index bb66a890ac..b1e6296db1 100644
--- a/epan/dissectors/packet-kerberos.h
+++ b/epan/dissectors/packet-kerberos.h
@@ -71,7 +71,7 @@ guint8 *
decrypt_krb5_data(proto_tree *tree, packet_info *pinfo,
int usage,
int length,
- const char *cryptotext,
+ const guint8 *cryptotext,
int keytype);
#endif /* HAVE_HEIMDAL_KERBEROS || HAVE_MIT_KERBEROS */