]> saetta.ns0.it Git - libzakutils/commitdiff
Added on/off to ZakUtils::string_to_boolean.
authorAndrea Zagli <azagli@libero.it>
Sun, 15 May 2016 19:44:45 +0000 (21:44 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 15 May 2016 19:44:45 +0000 (21:44 +0200)
src/generic.c

index 2155f3d9af42e09fc266fe001eac3606602836cc..d80c065888c41b540a54867ebc9d48ed725bf8ac 100644 (file)
@@ -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;
                }