X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_auth.c;h=e80af7d94a7c3f246e9267eb5fde93d6fd4b534d;hb=fe5563f92021618b4a8b41e412c73d8364fcaf6e;hp=a33c33979c84ba6b20776abb6e7f5f4743f049f7;hpb=fcaa1807cfe424af2498c75b9c6ea6f490dc15ce;p=meshlink diff --git a/src/protocol_auth.c b/src/protocol_auth.c index a33c3397..e80af7d9 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -165,7 +165,7 @@ static bool finalize_invitation(meshlink_handle_t *mesh, connection_t *c, const n->ecdsa = ecdsa_set_public_key(data); n->submesh = c->submesh; - if(!node_write_config(mesh, n)) { + if(!node_write_config(mesh, n) || !config_sync(mesh, "current")) { logger(mesh, MESHLINK_ERROR, "Error writing configuration file for invited node %s!\n", c->name); free_node(n); return false; @@ -343,9 +343,7 @@ bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) { return false; } - node_read_public_key(mesh, n); - - if(!ecdsa_active(n->ecdsa)) { + if(!node_read_public_key(mesh, n)) { logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name); if(n->status.reachable && !n->status.waitingforkey) {