dav/config.c

changeset 472
08d2d1263429
parent 470
6bf798ad3aec
child 606
aa49966e4e85
--- 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; 

mercurial