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

Collapse All | Expand All

(-)openssh-4.5p1/ssh.c~ (-1 / +5 lines)
Lines 1347-1353 Link Here
1347
		}
1347
		}
1348
		if (errno == ENOENT)
1348
		if (errno == ENOENT)
1349
			debug("Control socket \"%.100s\" does not exist", path);
1349
			debug("Control socket \"%.100s\" does not exist", path);
1350
		else {
1350
		else if (errno == ECONNREFUSED) {
1351
			debug("Control socket connect(%.100s): %s", path,
1352
			    strerror(errno));
1353
			unlink(path);
1354
		} else {
1351
			error("Control socket connect(%.100s): %s", path,
1355
			error("Control socket connect(%.100s): %s", path,
1352
			    strerror(errno));
1356
			    strerror(errno));
1353
		}
1357
		}

Return to bug 1329