| … | |
… | |
| 362 | STRLIST_FOREACH (nodes, n, i) { |
362 | STRLIST_FOREACH (nodes, n, i) { |
| 363 | if (point_regex && regexec (point_regex, n, 0, NULL, 0) != 0) |
363 | if (point_regex && regexec (point_regex, n, 0, NULL, 0) != 0) |
| 364 | continue; |
364 | continue; |
| 365 | if (skip_point_regex && regexec (skip_point_regex, n, 0, NULL, 0) == 0) |
365 | if (skip_point_regex && regexec (skip_point_regex, n, 0, NULL, 0) == 0) |
| 366 | continue; |
366 | continue; |
| 367 | if (rc_is_env ("RC_QUIET", "yes") != 0) |
367 | if (! rc_is_env ("RC_QUIET", "yes")) |
| 368 | printf ("%s\n", n); |
368 | printf ("%s\n", n); |
| 369 | result = EXIT_SUCCESS; |
369 | result = EXIT_SUCCESS; |
| 370 | } |
370 | } |
| 371 | rc_strlist_free (nodes); |
371 | rc_strlist_free (nodes); |
| 372 | |
372 | |