diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2011-12-24 19:12:15 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2011-12-24 19:12:15 +0100 |
commit | 9a1c14d8b636510242f81558f7f0a43918636865 (patch) | |
tree | 5ee714ae952bf617980aa7122c59ba2da2a33da5 /lib/arc.c | |
parent | 34ded90e19635c7ebf2afd184f36b03abc879bec (diff) |
An empty password is still a password, don't refuse accounts for that.
Diffstat (limited to 'lib/arc.c')
-rw-r--r-- | lib/arc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -199,7 +199,7 @@ int arc_decode( unsigned char *crypt, int crypt_len, char **clear, char *passwor if( clear_len < 0 ) { *clear = g_strdup( "" ); - return 0; + return -1; } /* Prepare buffers and the key + IV */ |