From 50f7a402499cd53719c6f2e67bfe1811ddfa6f57 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Sat, 4 Jan 2014 10:26:24 +1000 Subject: aio: open |... should use ::popen In case not in the global namespace Signed-off-by: Steve Bennett --- jim-aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jim-aio.c') diff --git a/jim-aio.c b/jim-aio.c index e7b2167..833a44c 100644 --- a/jim-aio.c +++ b/jim-aio.c @@ -1038,7 +1038,7 @@ static int JimAioOpenCommand(Jim_Interp *interp, int argc, if (*filename == '|') { Jim_Obj *evalObj[3]; - evalObj[0] = Jim_NewStringObj(interp, "popen", -1); + evalObj[0] = Jim_NewStringObj(interp, "::popen", -1); evalObj[1] = Jim_NewStringObj(interp, filename + 1, -1); evalObj[2] = Jim_NewStringObj(interp, mode, -1); -- cgit v1.1