X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lib%2Findexopts.c;h=0f65b97c9d1edbf8536a77863b23eab2e0d5b39c;hb=b62045a18680720b407173140d79b459e45e6039;hp=15c31d249620b8c33caa53ed0469e63cd4029262;hpb=d0da7a0a1c24b937eb754e8f73e5cf7e3857f24a;p=notmuch diff --git a/lib/indexopts.c b/lib/indexopts.c index 15c31d24..0f65b97c 100644 --- a/lib/indexopts.c +++ b/lib/indexopts.c @@ -27,33 +27,33 @@ notmuch_database_get_default_indexopts (notmuch_database_t *db) if (!ret) return ret; - char * try_decrypt; - notmuch_status_t err = notmuch_database_get_config (db, "index.try_decrypt", &try_decrypt); + char * decrypt; + notmuch_status_t err = notmuch_database_get_config (db, "index.decrypt", &decrypt); if (err) return ret; - if (try_decrypt && - ((!(strcasecmp(try_decrypt, "true"))) || - (!(strcasecmp(try_decrypt, "yes"))) || - (!(strcasecmp(try_decrypt, "1"))))) - notmuch_indexopts_set_try_decrypt (ret, true); + if (decrypt && + ((!(strcasecmp(decrypt, "true"))) || + (!(strcasecmp(decrypt, "yes"))) || + (!(strcasecmp(decrypt, "1"))))) + notmuch_indexopts_set_decrypt_policy (ret, true); - free (try_decrypt); + free (decrypt); return ret; } notmuch_status_t -notmuch_indexopts_set_try_decrypt (notmuch_indexopts_t *indexopts, - notmuch_bool_t try_decrypt) +notmuch_indexopts_set_decrypt_policy (notmuch_indexopts_t *indexopts, + notmuch_bool_t decrypt_policy) { if (!indexopts) return NOTMUCH_STATUS_NULL_POINTER; - indexopts->crypto.decrypt = try_decrypt; + indexopts->crypto.decrypt = decrypt_policy; return NOTMUCH_STATUS_SUCCESS; } notmuch_bool_t -notmuch_indexopts_get_try_decrypt (const notmuch_indexopts_t *indexopts) +notmuch_indexopts_get_decrypt_policy (const notmuch_indexopts_t *indexopts) { if (!indexopts) return false;