diff options
author | default <nobody@localhost> | 2022-10-04 09:52:41 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-04 09:52:41 +0200 |
commit | 5f74358dc46b3c53646cde53219652667f63de77 (patch) | |
tree | 5d7fad80b03b0f379a48ae641776f5ad048660f0 | |
parent | da7bf43385e900121aadbd90f6cb22d05c0cff5c (diff) |
Fixed bug.
-rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,7 +217,7 @@ int adduser(char *uid) config = xs_dict_append(config, "avatar", ""); config = xs_dict_append(config, "bio", ""); config = xs_dict_append(config, "published", date); - config = xs_dict_append(config, "password", pwd_f); + config = xs_dict_append(config, "passwd", pwd_f); xs *basedir = xs_fmt("%s/user/%s", srv_basedir, uid); |