client: fix bug where <dont_use_vbox> config option wasn't being parsed

This commit is contained in:
David Anderson 2014-10-04 06:59:19 -07:00
parent 8cf6806583
commit 47fbad8e65
1 changed files with 1 additions and 0 deletions

View File

@ -321,6 +321,7 @@ int CC_CONFIG::parse_options_client(XML_PARSER& xp) {
if (xp.parse_bool("disallow_attach", disallow_attach)) continue; if (xp.parse_bool("disallow_attach", disallow_attach)) continue;
if (xp.parse_bool("dont_check_file_sizes", dont_check_file_sizes)) continue; if (xp.parse_bool("dont_check_file_sizes", dont_check_file_sizes)) continue;
if (xp.parse_bool("dont_contact_ref_site", dont_contact_ref_site)) continue; if (xp.parse_bool("dont_contact_ref_site", dont_contact_ref_site)) continue;
if (xp.parse_bool("dont_use_vbox", dont_use_vbox)) continue;
if (xp.match_tag("exclude_gpu")) { if (xp.match_tag("exclude_gpu")) {
EXCLUDE_GPU eg; EXCLUDE_GPU eg;
retval = eg.parse(xp); retval = eg.parse(xp);