From: Jon Ludlam Date: Tue, 12 Oct 2010 10:08:16 +0000 (+0100) Subject: Fix an invocation of "/bin/bash " to be "/bin/bash" X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c7b9fb39f4d773e59ae86451e288a2a7d6761b8a;p=xcp%2Fxen-api.git Fix an invocation of "/bin/bash " to be "/bin/bash" Signed-off-by: Jon Ludlam --- diff --git a/ocaml/xapi/xapi_network_real.ml b/ocaml/xapi/xapi_network_real.ml index 4f398615..954cec5f 100644 --- a/ocaml/xapi/xapi_network_real.ml +++ b/ocaml/xapi/xapi_network_real.ml @@ -90,7 +90,7 @@ let maybe_shutdown_guest_installer_network bridge = begin match with_logfile_fd "fix_firewall" (fun out -> - let pid = safe_close_and_exec None (Some out) (Some out) [] "/bin/bash " [Constants.fix_firewall_script;bridge] in + let pid = safe_close_and_exec None (Some out) (Some out) [] "/bin/bash" [Constants.fix_firewall_script;bridge] in waitpid pid) with | Success(log,_) -> ()