diff options
author | default <nobody@localhost> | 2022-09-19 23:08:59 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-19 23:08:59 +0200 |
commit | e5167b7b497175261df09a53c58d90395d108eb2 (patch) | |
tree | 70c663ad5bc0646e0fffee7eeeb3ffe57afd11ac /snac.c | |
parent | dd1a5ff1472eeadbfd84eaa1eab55af54179200a (diff) |
Renamed xs_splitn() to xs_split_n().
Diffstat (limited to 'snac.c')
-rw-r--r-- | snac.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ int check_password(char *uid, char *passwd, char *hash) /* checks a password */ { int ret = 0; - xs *spl = xs_splitn(hash, ":", 1); + xs *spl = xs_split_n(hash, ":", 1); if (xs_list_len(spl) == 2) { xs *n_hash = hash_password(uid, passwd, xs_list_get(spl, 0)); |