From 5065c00dcc1e9cf6a1498353c2079a4783d13e6e Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 15 May 2016 21:44:45 +0200 Subject: [PATCH] Added on/off to ZakUtils::string_to_boolean. --- src/generic.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/generic.c b/src/generic.c index 2155f3d..d80c065 100644 --- a/src/generic.c +++ b/src/generic.c @@ -509,7 +509,8 @@ zak_utils_string_to_boolean (const gchar *str) || strcasecmp (str_value, "f") == 0 || strcasecmp (str_value, "false") == 0 || strcasecmp (str_value, "n") == 0 - || strcasecmp (str_value, "no") == 0) + || strcasecmp (str_value, "no") == 0 + || strcasecmp (str_value, "off") == 0) { bool_value = FALSE; } @@ -517,7 +518,8 @@ zak_utils_string_to_boolean (const gchar *str) || strcasecmp (str_value, "t") == 0 || strcasecmp (str_value, "true") == 0 || strcasecmp (str_value, "y") == 0 - || strcasecmp (str_value, "yes") == 0) + || strcasecmp (str_value, "yes") == 0 + || strcasecmp (str_value, "on") == 0) { bool_value = TRUE; } -- 2.49.0