Home
last modified time | relevance | path

Searched refs:matchptr (Results 1 – 1 of 1) sorted by relevance

/src/crypto/openssh/openbsd-compat/
H A Dfnmatch.c295 const char *dummyptr, *matchptr, *strendseg; in fnmatch() local
383 for (matchptr = pattern, matchlen = 0; 1; ++matchlen) { in fnmatch()
384 if ((*matchptr == '\0') || in fnmatch()
385 (slash && ((*matchptr == '/') || in fnmatch()
386 (escape && (*matchptr == '\\') && in fnmatch()
387 (matchptr[1] == '/'))))) { in fnmatch()
402 if (*matchptr == '*') { in fnmatch()
426 if (escape && (*matchptr == '\\') && in fnmatch()
427 matchptr[1]) { in fnmatch()
428 matchptr += 2; in fnmatch()
[all …]