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

Collapse All | Expand All

(-)sftp-int.c.orig (-1 / +1 lines)
Lines 338-344 Link Here
338
	if (*cp == '\"' || *cp == '\'') {
338
	if (*cp == '\"' || *cp == '\'') {
339
		quot = *cp++;
339
		quot = *cp++;
340
340
341
		end = strchr(cp, quot);
341
		end = strrchr(cp, quot);
342
		if (end == NULL) {
342
		if (end == NULL) {
343
			error("Unterminated quote");
343
			error("Unterminated quote");
344
			goto fail;
344
			goto fail;

Return to bug 517