aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-07 23:35:41 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-07 23:35:41 -0800
commit5f686ebb478b461c3044261a84fc347072c1ff07 (patch)
treeb362f4609c405cd62e734ef926ee6dc92df5a66b /expand.cpp
parent6a31457c6d764425f8039a6159e92b5f84a2a0c5 (diff)
Clean up exec_subshell, removing al_list from it
Diffstat (limited to 'expand.cpp')
-rw-r--r--expand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/expand.cpp b/expand.cpp
index 846c155e..da1a13c1 100644
--- a/expand.cpp
+++ b/expand.cpp
@@ -1262,7 +1262,7 @@ static int expand_cmdsubst( parser_t &parser, const wcstring &input, std::vector
const wcstring subcmd(paran_begin + 1, paran_end-paran_begin - 1);
- if( exec_subshell2( subcmd, sub_res) == -1 )
+ if( exec_subshell( subcmd, sub_res) == -1 )
{
parser.error( CMDSUBST_ERROR, -1, L"Unknown error while evaulating command substitution" );
return 0;