Fix timeouts.

Due to a typo we were capping total execution time to 90s not
300s. This fixes the typo.

Test: Run odrefresh, check the timeouts logged
Test: Run odrefresh in a VM, see it succeed after > 90s
Change-Id: I919ff469ab63dd80058ff170f496605303f8f04d
diff --git a/odrefresh/odr_config.h b/odrefresh/odr_config.h
index af0ee64..0cebd46 100644
--- a/odrefresh/odr_config.h
+++ b/odrefresh/odr_config.h
@@ -63,8 +63,8 @@
   int compilation_os_address_ = 0;
   std::string boot_classpath_;
   std::string artifact_dir_;
-  time_t max_execution_seconds_ = kMaxChildProcessSeconds;
-  time_t max_child_process_seconds_ = kMaximumExecutionSeconds;
+  time_t max_execution_seconds_ = kMaximumExecutionSeconds;
+  time_t max_child_process_seconds_ = kMaxChildProcessSeconds;
 
   // Staging directory for artifacts. The directory must exist and will be automatically removed
   // after compilation. If empty, use the default directory.