]> git.meshlink.io Git - meshlink/blobdiff - src/protocol_key.c
Remove some more traces of tinc.
[meshlink] / src / protocol_key.c
index 0746e1c24e8a0b3a99bbd22dcef659b7abd6de37..97e19610ce7164ad0e17fabdc6d59f3fe0a36a65 100644 (file)
@@ -89,7 +89,7 @@ bool send_req_key(meshlink_handle_t *mesh, node_t *to) {
                logger(DEBUG_ALWAYS, LOG_DEBUG, "send_req_key(%s) called while sptps->label != NULL!", to->name);
 
        char label[25 + strlen(mesh->self->name) + strlen(to->name)];
-       snprintf(label, sizeof label, "tinc UDP key expansion %s %s", mesh->self->name, to->name);
+       snprintf(label, sizeof label, "MeshLink UDP key expansion %s %s", mesh->self->name, to->name);
        sptps_stop(&to->sptps);
        to->status.validkey = false;
        to->status.waitingforkey = true;
@@ -145,7 +145,7 @@ static bool req_key_ext_h(meshlink_handle_t *mesh, connection_t *c, const char *
                        }
 
                        char label[25 + strlen(from->name) + strlen(mesh->self->name)];
-                       snprintf(label, sizeof label, "tinc UDP key expansion %s %s", from->name, mesh->self->name);
+                       snprintf(label, sizeof label, "MeshLink UDP key expansion %s %s", from->name, mesh->self->name);
                        sptps_stop(&from->sptps);
                        from->status.validkey = false;
                        from->status.waitingforkey = true;