summaryrefslogtreecommitdiff
path: root/utils/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/utils.c')
-rw-r--r--utils/utils.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/utils/utils.c b/utils/utils.c
index 37839dc48..19d5bf0d6 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -28,7 +28,6 @@
#include <strings.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include <regex.h>
#include <time.h>
#include <errno.h>
#include <curl/curl.h>
@@ -217,21 +216,6 @@ nserror snstrjoin(char **str, size_t *size, char sep, size_t nelm, ...)
}
-/* exported interface documented in utils/utils.h */
-nserror regcomp_wrapper(regex_t *preg, const char *regex, int cflags)
-{
- int r;
- r = regcomp(preg, regex, cflags);
- if (r) {
- char errbuf[200];
- regerror(r, preg, errbuf, sizeof errbuf);
- LOG("Failed to compile regexp '%s': %s\n", regex, errbuf);
- return NSERROR_INIT_FAILED;
- }
- return NSERROR_OK;
-}
-
-
/**
* The size of buffers within human_friendly_bytesize.
*