aboutsummaryrefslogtreecommitdiff
path: root/miscutils/devfsd.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-08 14:19:48 +0000
committerRob Landley <rob@landley.net>2006-06-08 14:19:48 +0000
commit176f2df69b70ad53d4e2f893d9d8fe1c254e405d (patch)
treefcd3eb6f1a6ae89b52e69e404741aac1c1aec83d /miscutils/devfsd.c
parent9c6f9552ec99b200f203943076778345b0946fb2 (diff)
downloadbusybox-176f2df69b70ad53d4e2f893d9d8fe1c254e405d.tar.gz
Patch from Erik Hovland, via Tito.
Diffstat (limited to 'miscutils/devfsd.c')
-rw-r--r--miscutils/devfsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c
index aa682dc0d..b2912a89e 100644
--- a/miscutils/devfsd.c
+++ b/miscutils/devfsd.c
@@ -1311,9 +1311,9 @@ static const char *get_variable (const char *variable, void *info)
/* compare_string_array returns i>=0 */
i=compare_string_array(field_names, variable);
- if ( i > 6 && (i > 1 && gv_info == NULL))
+ if ( i > 6 || i < 0 || (i > 1 && gv_info == NULL))
return (NULL);
- if( i >= 0 || i <= 3)
+ if( i >= 0 && i <= 3)
{
debug_msg_logger(LOG_INFO, "%s: i=%d %s", __FUNCTION__, i ,field_names[i+7]);
return(field_names[i+7]);