Displaying 1 result from an estimated 1 matches for "low_str".
Did you mean:
_oc_str
2016 Apr 15
2
ssh-keygen -R is case-sensitive, but should not be
Here is a better patch. Somehow I pasted an older version of my edits:
-------------------------------------------------------
% diff ./match.c /home/millerig/osrc/openssh-7.2p2/match.c
121a122
> char *low_string = 0;
156,159c157,168
< if (match_pattern(string, sub)) {
< if (negated)
< return -1; /* Negative */
< else
---
> if (dolower) {
> u_int j;
> if (low_string) free(low_string);
> low_string = malloc(strlen(string) + 1);
> for (j = 0; j < str...