summaryrefslogtreecommitdiff
path: root/ecp/util
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2021-08-31 11:14:41 +0200
committerUros Majstorovic <majstor@majstor.org>2021-08-31 11:14:41 +0200
commit2a46bdf517eb5fcb8ba59c398a32859c6496475d (patch)
treed8773d60c6827cf6499b9fda98323feabc10e63f /ecp/util
parentff7ffade2f5686ae977af578cb87040cc4654994 (diff)
transient messages added; code cleanup
Diffstat (limited to 'ecp/util')
-rw-r--r--ecp/util/mknode.c2
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);