X-Git-Url: http://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprotocol_auth.c;h=287681b5d5973e8327c93fd400cee92290d5978a;hb=8b9e5af0d93069a81ce2ebed9899eedf3b7b184b;hp=3bf18b21cb2dbf4747b038b4ef52106fa1eedd22;hpb=3a4fe104a06b73fd19c550546e7c65a59ff2afe3;p=tinc diff --git a/src/protocol_auth.c b/src/protocol_auth.c index 3bf18b21..287681b5 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -1,7 +1,7 @@ /* protocol_auth.c -- handle the meta-protocol, authentication Copyright (C) 1999-2005 Ivo Timmermans, - 2000-2010 Guus Sliepen + 2000-2012 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -72,6 +72,10 @@ bool id_h(connection_t *c, char *request) { c->status.control = true; c->allow_request = CONTROL; c->last_ping_time = time(NULL) + 3600; + + free(c->name); + c->name = xstrdup(""); + return send_request(c, "%d %d %d", ACK, TINC_CTL_VERSION_CURRENT, getpid()); }