aboutsummaryrefslogtreecommitdiffstats
path: root/set.c
diff options
context:
space:
mode:
Diffstat (limited to 'set.c')
-rw-r--r--set.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/set.c b/set.c
index 8d872503..184c3243 100644
--- a/set.c
+++ b/set.c
@@ -91,9 +91,6 @@ int set_getint( set_t **head, char *key )
if( !s )
return 0;
- if( ( g_strcasecmp( s, "true" ) == 0 ) || ( g_strcasecmp( s, "yes" ) == 0 ) || ( g_strcasecmp( s, "on" ) == 0 ) )
- return 1;
-
if( sscanf( s, "%d", &i ) != 1 )
return 0;