diff options
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2100,7 +2100,7 @@ match_conf_password(const char *password, const struct MaskItem *conf) else encr = password; - return !strcmp(encr, conf->passwd); + return encr && !strcmp(encr, conf->passwd); } /* |