From: Guus Sliepen Date: Tue, 28 May 2013 11:41:53 +0000 (+0200) Subject: Fix port number in pidfile. X-Git-Tag: release-1.1pre8~39 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=12e68b95e6a84582a016492a467d0a16337a3c4b Fix port number in pidfile. --- diff --git a/src/control.c b/src/control.c index 539ff360..ad2a7256 100644 --- a/src/control.c +++ b/src/control.c @@ -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)