Index: trunk/src/select.c =================================================================== --- trunk/src/select.c (revision 827) +++ trunk/src/select.c (revision 828) @@ -813,13 +813,8 @@ regexec_match_all (const regex_t *preg, const char *string) { regmatch_t match; - if (regexec (preg, string, 1, &match, 0) != 0) return 0; - if (match.rm_so != 0) - return 0; - if (match.rm_eo != strlen(string)) - return 0; return 1; } #endif