diff -r d8e883bd1fd8 -r 08d2d1263429 dav/config.c --- a/dav/config.c Sat Sep 15 11:58:17 2018 +0200 +++ b/dav/config.c Thu Sep 20 13:07:38 2018 +0200 @@ -103,7 +103,7 @@ repos = ucx_map_new(16); keys = ucx_map_new(16); - char *pwfile = util_concat_path(ENV_HOME, ".dav/pw.crypt"); + char *pwfile = util_concat_path(ENV_HOME, ".dav/secrets.crypt"); pstore = pwdstore_open(pwfile); free(pwfile); @@ -766,7 +766,7 @@ } int pwdstore_save(PwdStore *pwdstore) { - char *pwfile = util_concat_path(ENV_HOME, ".dav/pw.crypt"); + char *pwfile = util_concat_path(ENV_HOME, ".dav/secrets.crypt"); int ret = pwdstore_store(pwdstore, pwfile); free(pwfile); return ret;