aboutsummaryrefslogtreecommitdiff
path: root/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.c')
-rw-r--r--src/conf.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/conf.c b/src/conf.c
index 803ad850..4da44c77 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -96,16 +96,6 @@ static struct config_entry config_entries[] = {
};
static bool
-string_array_contains(const char *const* array, const char *value)
-{
- for (const char *const* x = array; *x; x++)
- if (g_ascii_strcasecmp(*x, value) == 0)
- return true;
-
- return false;
-}
-
-static bool
get_bool(const char *value, bool *value_r)
{
static const char *t[] = { "yes", "true", "1", NULL };