diff options
Diffstat (limited to 'lib/arc.c')
-rw-r--r-- | lib/arc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,7 +187,7 @@ int arc_encode( char *clear, int clear_len, unsigned char **crypt, char *passwor return clear_len + ARC_IV_LEN; } -int arc_decode( unsigned char *crypt, int crypt_len, char **clear, char *password ) +int arc_decode( unsigned char *crypt, int crypt_len, char **clear, const char *password ) { struct arc_state *st; unsigned char *key; |