Updated Branches: refs/heads/1.2.x 191b75a13 -> 50e59880a Add missing binary_to_list call in parent commit Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/50e59880 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/50e59880 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/50e59880 Branch: refs/heads/1.2.x Commit: 50e59880a418c57aa728bc675a1b80c1077a1d6c Parents: 191b75a Author: Filipe David Borba Manana Authored: Sat Nov 5 21:08:39 2011 +0000 Committer: Filipe David Borba Manana Committed: Sat Nov 5 21:09:27 2011 +0000 ---------------------------------------------------------------------- src/couchdb/couch_os_process.erl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/50e59880/src/couchdb/couch_os_process.erl ---------------------------------------------------------------------- diff --git a/src/couchdb/couch_os_process.erl b/src/couchdb/couch_os_process.erl index 518a7c2..afa5a57 100644 --- a/src/couchdb/couch_os_process.erl +++ b/src/couchdb/couch_os_process.erl @@ -156,7 +156,7 @@ init([Command, Options, PortOptions]) -> % this ensure the real os process is killed when this process dies. erlang:monitor(process, Pid), receive _ -> ok end, - os:cmd(iolist_to_binary(KillCmd)) + os:cmd(?b2l(iolist_to_binary(KillCmd))) end), OsProc = lists:foldl(fun(Opt, Proc) ->