Change return type of `dc_is_configured' to bool

This commit is contained in:
Dmitry Bogatov
2019-09-10 16:09:34 +00:00
parent 1576dc1d13
commit 1cdb9c733a
3 changed files with 5 additions and 5 deletions

View File

@@ -581,7 +581,7 @@ unsafe fn import_backup(context: &Context, backup_to_import: *const libc::c_char
.map_or("<<None>>", |p| p.to_str().unwrap())
);
if 0 != dc_is_configured(context) {
if dc_is_configured(context) {
error!(context, 0, "Cannot import backups to accounts in use.");
return 0;
}