Fix up some type mismatch errors in the arcfour module

This commit is contained in:
Kevin Easton
2015-09-07 17:12:04 +10:00
parent 8cc9684c76
commit 642ab8829d
2 changed files with 6 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ typedef struct {
} arckey;
/* Prototypes */
static inline void arcfourInit(arckey *, char *, unsigned short);
static inline void arcfourInit(arckey *, void *, unsigned short);
static inline char *arcfourCrypt(arckey *, char *, int);
static int send_dcc_encrypt (int, int, char *, int);
static int get_dcc_encrypt (int, int, char *, int, int);