Fix port number in pidfile.

This commit is contained in:
Guus Sliepen 2013-05-28 13:41:53 +02:00
parent cbe03b0932
commit 12e68b95e6

View file

@ -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. // 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)) { 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 { } else {
if(sa.sa.sa_family == AF_INET) { if(sa.sa.sa_family == AF_INET) {
if(sa.in.sin_addr.s_addr == 0) if(sa.in.sin_addr.s_addr == 0)