diff options
author | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2013-08-01 23:34:47 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2013-08-01 23:34:47 +0000 |
commit | 2df54da6e2b70777154d38ce3923093568358285 (patch) | |
tree | 4bdb887d40a0a5fee501c0bd30f31388019fbe32 /asn1/spnego | |
parent | 6ae3372687957dfbda6352598aee00e84f83f7da (diff) | |
download | wireshark-2df54da6e2b70777154d38ce3923093568358285.tar.gz wireshark-2df54da6e2b70777154d38ce3923093568358285.tar.bz2 wireshark-2df54da6e2b70777154d38ce3923093568358285.zip |
Move a bunch of the crypt modules and pint.h into wsutil.
This means wsutil now links against libcrypt.
Protect a bunch of the crypt header files from multiple inclusion.
svn path=/trunk/; revision=51100
Diffstat (limited to 'asn1/spnego')
-rw-r--r-- | asn1/spnego/packet-spnego-template.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/asn1/spnego/packet-spnego-template.c b/asn1/spnego/packet-spnego-template.c index 4239c1e156..7960a71da7 100644 --- a/asn1/spnego/packet-spnego-template.c +++ b/asn1/spnego/packet-spnego-template.c @@ -34,12 +34,14 @@ #include "config.h" #include <glib.h> + +#include <wsutil/rc4.h> + #include <epan/packet.h> #include <epan/asn1.h> #include "packet-dcerpc.h" #include "packet-gssapi.h" #include "packet-kerberos.h" -#include <epan/crypt/rc4.h> #include <epan/conversation.h> #include <epan/wmem/wmem.h> #include <epan/asn1.h> |