From 054508b5edeaef602ee4251bb3828387cb26f582 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 8 May 2021 17:24:30 -0400 Subject: Warn once about regex on windows from cleanpath utility, not library --- lib/cleanpath.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/cleanpath.c') diff --git a/lib/cleanpath.c b/lib/cleanpath.c index c3a7e81..fde9e6d 100644 --- a/lib/cleanpath.c +++ b/lib/cleanpath.c @@ -80,8 +80,6 @@ void cleanpath_filter(struct CleanPath *path, unsigned mode, const char *pattern } match = regexec(®ex, path->part[i], 0, NULL, 0) == 0 ? 1 : 0; regfree(®ex); -#else - fprintf(stderr, "WARNING: --regex|-r is not implemented on Windows. Using default filter mode.\n"); #endif break; case CLEANPATH_FILTER_EXACT: -- cgit