Add the LocalDiscoveryAddress option.
[tinc] / src / control.c
index cc5bbb0..ad2a725 100644 (file)
@@ -1,6 +1,6 @@
 /*
     control.c -- Control socket handling.
-    Copyright (C) 2012 Guus Sliepen <guus@tinc-vpn.org>
+    Copyright (C) 2013 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
@@ -157,7 +157,7 @@ bool init_control(void) {
        // Make sure we have a valid address, and map 0.0.0.0 and :: to 127.0.0.1 and ::1.
 
        if(getsockname(listen_socket[0].tcp.fd, (struct sockaddr *)&sa, &len)) {
-               xasprintf(&localhost, "127.0.0.1 port %d", myport);
+               xasprintf(&localhost, "127.0.0.1 port %s", myport);
        } else {
                if(sa.sa.sa_family == AF_INET) {
                        if(sa.in.sin_addr.s_addr == 0)