View | Details | Raw Unified | Return to bug 1329 | Differences between
and this patch

Collapse All | Expand All

(-)openssh-5.6p1/mux.c~ (-1 / +4 lines)
Lines 1825-1831 muxclient(const char *path) Link Here
1825
		}
1825
		}
1826
		if (errno == ENOENT)
1826
		if (errno == ENOENT)
1827
			debug("Control socket \"%.100s\" does not exist", path);
1827
			debug("Control socket \"%.100s\" does not exist", path);
1828
		else {
1828
		else if (errno == ECONNREFUSED) {
1829
			debug("Removing stale control socket \"%.100s\"", path);
1830
			unlink(path);
1831
		} else {
1829
			error("Control socket connect(%.100s): %s", path,
1832
			error("Control socket connect(%.100s): %s", path,
1830
			    strerror(errno));
1833
			    strerror(errno));
1831
		}
1834
		}

Return to bug 1329