View | Details | Raw Unified | Return to bug 472
Collapse All | Expand All

(-)openssh-3.5p1/scp.c (-1 / +1 lines)
Lines 1014-1020 Link Here
1014
		if (c & 0200)
1014
		if (c & 0200)
1015
			goto bad;
1015
			goto bad;
1016
		if (!isalpha(c) && !isdigit(c) &&
1016
		if (!isalpha(c) && !isdigit(c) &&
1017
		    c != '_' && c != '-' && c != '.' && c != '+')
1017
		    c != '_' && c != '-' && c != '.' && c != '+' && c != '#')
1018
			goto bad;
1018
			goto bad;
1019
	} while (*++cp);
1019
	} while (*++cp);
1020
	return (1);
1020
	return (1);

Return to bug 472