Don't default to last known option when setting flags

This commit is contained in:
Casey Dahlin 2008-08-05 15:40:41 -04:00 committed by Ray Strode
parent 3baeb92e99
commit e4191b5d38

View file

@ -292,6 +292,9 @@ ply_command_get_option (ply_command_t *command,
node = next_node;
}
if (node == NULL)
return NULL;
return option;
}