fixed argument processing bug

This commit is contained in:
Martin Willi 2007-09-26 15:07:34 +00:00
parent c295d0eb4b
commit 8207e3ea4d
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static int iterenv_cb(void *null, int num, char **key, char **value)
*key = NULL;
*value = NULL;
if (num > req_env_len)
if (num < req_env_len)
{
char *eq;