Show hostname and port in error message when connecting to a running tincd.

This commit is contained in:
Guus Sliepen 2011-05-29 22:10:54 +02:00
parent 04de15984f
commit b3aeaf0f91

View file

@ -535,8 +535,7 @@ int main(int argc, char *argv[], char *envp[]) {
#endif
if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
fprintf(stderr, "Cannot connect to %s: %s\n", controlcookiename, sockstrerror(sockerrno));
fprintf(stderr, "Cannot connect to %s port %s: %s\n", host ?: "localhost", port, sockstrerror(sockerrno));
return 1;
}