diff options
author | oneturkmen <17970732+oneturkmen@users.noreply.github.com> | 2019-06-03 18:43:50 -0600 |
---|---|---|
committer | oneturkmen <17970732+oneturkmen@users.noreply.github.com> | 2019-06-03 19:59:02 -0600 |
commit | cd153efb4acce81170927790653555c5f10929eb (patch) | |
tree | 939cb977ca62b9ca89263fc87ba16f0bf2be8bf2 /components/constellation/pipeline.rs | |
parent | 3a2705f587c9a33f9440412f130a27cc66dcad28 (diff) | |
download | servo-cd153efb4acce81170927790653555c5f10929eb.tar.gz servo-cd153efb4acce81170927790653555c5f10929eb.zip |
Constellation: removed almost all opts::get
Diffstat (limited to 'components/constellation/pipeline.rs')
-rw-r--r-- | components/constellation/pipeline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index 2113a275e21..e1ee7af6685 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.rs @@ -646,7 +646,7 @@ impl UnprivilegedPipelineContent { .expect("Failed to create IPC one-shot server."); // If there is a sandbox, use the `gaol` API to create the child process. - if opts::get().sandbox { + if self.opts.sandbox { let mut command = sandbox::Command::me().expect("Failed to get current sandbox."); self.setup_common(&mut command, token); |