diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-08-31 11:14:41 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-08-31 11:14:41 +0200 |
commit | 2a46bdf517eb5fcb8ba59c398a32859c6496475d (patch) | |
tree | d8773d60c6827cf6499b9fda98323feabc10e63f /ecp/util | |
parent | ff7ffade2f5686ae977af578cb87040cc4654994 (diff) |
transient messages added; code cleanup
Diffstat (limited to 'ecp/util')
-rw-r--r-- | ecp/util/mknode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp/util/mknode.c b/ecp/util/mknode.c index 882c58d..0c262fe 100644 --- a/ecp/util/mknode.c +++ b/ecp/util/mknode.c @@ -45,7 +45,7 @@ int main(int argc, char *argv[]) { if (rv) goto err; ctx.rng = v_rng; - rv = ecp_dhkey_generate(&ctx, &key); + rv = ecp_dhkey_gen(&ctx, &key); if (rv) goto err; rv = ecp_node_init(&node, &key.public, (argc == 3) ? argv[2] : NULL); |