[core] clarify error message in gw_backend.c

clarify error message in gw_backend.c if connect() to unix socket fails
personal/stbuehler/tests-path
Glenn Strauss 2021-07-25 05:52:09 -04:00
parent 8c36615f85
commit 6515f77665
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ static int gw_spawn_connection(gw_host * const host, gw_proc * const proc, log_e
if (-1 == status && errno != ENOENT && proc->unixsocket) {
log_perror(errh, __FILE__, __LINE__,
"unlink %s after connect failed", proc->unixsocket->ptr);
"connect %s", proc->unixsocket->ptr);
unlink(proc->unixsocket->ptr);
}