Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/ssh/ssh/
H A Dsshconnect.c552 regex_t yesre, nore; in confirm() local
564 if ((rerr = regcomp(&yesre, nl_langinfo(YESEXPR), REG_EXTENDED)) != 0) { in confirm()
565 errlen = regerror(rerr, &yesre, NULL, 0); in confirm()
568 regerror(rerr, &yesre, errstr, errlen); in confirm()
585 if (p && regexec(&yesre, p, 0, NULL, 0) == 0) in confirm()
590 regfree(&yesre); in confirm()
/titanic_44/usr/src/cmd/beadm/
H A Dbeadm.c553 const char *yesre = nl_langinfo(YESEXPR); in confirm_destroy() local
561 if (regcomp(&yes_re, yesre, cflags) != 0) { in confirm_destroy()