Label control connections for log output as "<control>", not "<unknown>".
[tinc] / src / protocol_auth.c
index 3bf18b2..287681b 100644 (file)
@@ -1,7 +1,7 @@
 /*
     protocol_auth.c -- handle the meta-protocol, authentication
     Copyright (C) 1999-2005 Ivo Timmermans,
-                  2000-2010 Guus Sliepen <guus@tinc-vpn.org>
+                  2000-2012 Guus Sliepen <guus@tinc-vpn.org>
 
     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("<control>");
+
                return send_request(c, "%d %d %d", ACK, TINC_CTL_VERSION_CURRENT, getpid());
        }