diff options
Diffstat (limited to 'eBones/lib/libkrb/pkt_clen.c')
-rw-r--r-- | eBones/lib/libkrb/pkt_clen.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eBones/lib/libkrb/pkt_clen.c b/eBones/lib/libkrb/pkt_clen.c index 17d46c2..f8dacae 100644 --- a/eBones/lib/libkrb/pkt_clen.c +++ b/eBones/lib/libkrb/pkt_clen.c @@ -15,10 +15,12 @@ static char *rcsid = #endif /* lint */ #endif +#include <string.h> + #include <krb.h> #include <prot.h> -#include <string.h> +extern int krb_debug; extern int swap_bytes; /* @@ -29,7 +31,9 @@ extern int swap_bytes; * ciphertext length out of the packet. */ -int pkt_clen(KTEXT pkt) +int +pkt_clen(pkt) + KTEXT pkt; { static unsigned short temp,temp2; int clen = 0; |