From 99605583379b28502ba375bdfcd995ed19fc6754 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 9 Apr 2015 11:53:49 +0000 Subject: * internal.h (rb_execarg_parent_start): Renamed from rb_execarg_fixup. * process.c: Follows the above change. * io.c: Ditto. * ext/pty/pty.c: Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 00b2bbcbe5..1743f61a89 100644 --- a/io.c +++ b/io.c @@ -5894,7 +5894,7 @@ popen_exec(void *pp, char *errmsg, size_t errmsg_len) static VALUE rb_execarg_fixup_v(VALUE execarg_obj) { - rb_execarg_fixup(execarg_obj); + rb_execarg_parent_start(execarg_obj); return Qnil; } @@ -6079,7 +6079,7 @@ pipe_open(VALUE execarg_obj, const char *modestr, int fmode, convconfig_t *convc cmd = StringValueCStr(prog); } if (!NIL_P(execarg_obj)) { - rb_execarg_fixup(execarg_obj); + rb_execarg_parent_start(execarg_obj); rb_execarg_run_options(eargp, sargp, NULL, 0); } fp = popen(cmd, modestr); -- cgit v1.2.3