aboutsummaryrefslogtreecommitdiffstats
path: root/lib/os_mon/src/os_sup.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2013-03-19 14:28:39 +0100
committerSiri Hansen <[email protected]>2013-03-19 14:31:02 +0100
commitb83c42d381b3b8aaf8f5a564b1abbeb48a17a01c (patch)
treea0c29d68757cf51a95e6147cb236d81c918e0ccb /lib/os_mon/src/os_sup.erl
parent0be34905e603ca9e1acb5ea763bf25cdab8d5d7c (diff)
downloadotp-b83c42d381b3b8aaf8f5a564b1abbeb48a17a01c.tar.gz
otp-b83c42d381b3b8aaf8f5a564b1abbeb48a17a01c.tar.bz2
otp-b83c42d381b3b8aaf8f5a564b1abbeb48a17a01c.zip
[os_mon] Quote path to programs run with open_port({spawn,...
This is to allow space in the path.
Diffstat (limited to 'lib/os_mon/src/os_sup.erl')
-rw-r--r--lib/os_mon/src/os_sup.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/os_mon/src/os_sup.erl b/lib/os_mon/src/os_sup.erl
index f5c6c138ba..3ad8b6e990 100644
--- a/lib/os_mon/src/os_sup.erl
+++ b/lib/os_mon/src/os_sup.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 1996-2009. All Rights Reserved.
+%% Copyright Ericsson AB 1996-2013. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -228,8 +228,8 @@ code_change(_OldVsn, State, _Extra) ->
start_portprogram() ->
OwnPath = os_mon:get_env(os_sup, os_sup_own),
Command =
- filename:join([code:priv_dir(os_mon), "bin", "ferrule"]) ++
- " " ++ OwnPath,
+ "\"" ++ filename:join([code:priv_dir(os_mon), "bin", "ferrule"]) ++
+ "\" " ++ OwnPath,
open_port({spawn, Command}, [{packet, 2}]).
%% os:cmd(cmd_str(enable)) should be done BEFORE starting os_sup