aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/sandbox.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/firejail/sandbox.c b/src/firejail/sandbox.c
index d0aaa214e..81d09ed34 100644
--- a/src/firejail/sandbox.c
+++ b/src/firejail/sandbox.c
@@ -166,7 +166,11 @@ int sandbox(void* sandbox_arg) {
166 } 166 }
167 167
168 // load IBUS env variables 168 // load IBUS env variables
169 env_ibus_load(); 169 if (arg_nonetwork || any_bridge_configured() || any_interface_configured()) {
170 // do nothing - there are problems with ibus version 1.5.11
171 }
172 else
173 env_ibus_load();
170 174
171 // grab a copy of cp command 175 // grab a copy of cp command
172 fs_build_cp_command(); 176 fs_build_cp_command();
@@ -285,7 +289,7 @@ int sandbox(void* sandbox_arg) {
285 pulseaudio_disable(); 289 pulseaudio_disable();
286 else 290 else
287 pulseaudio_init(); 291 pulseaudio_init();
288 292
289 //**************************** 293 //****************************
290 // networking 294 // networking
291 //**************************** 295 //****************************