diff options
Diffstat (limited to 'lldb/source/Target/ProcessLaunchInfo.cpp')
-rw-r--r-- | lldb/source/Target/ProcessLaunchInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Target/ProcessLaunchInfo.cpp b/lldb/source/Target/ProcessLaunchInfo.cpp index 4360cafaaa8..d2e4febb280 100644 --- a/lldb/source/Target/ProcessLaunchInfo.cpp +++ b/lldb/source/Target/ProcessLaunchInfo.cpp @@ -211,12 +211,12 @@ ProcessLaunchInfo::SetLaunchInSeparateProcessGroup (bool separate) } void -ProcessLaunchInfo::SetGlobArguments (bool glob) +ProcessLaunchInfo::SetShellExpandArguments (bool expand) { - if (glob) - m_flags.Set(lldb::eLaunchFlagGlobArguments); + if (expand) + m_flags.Set(lldb::eLaunchFlagShellExpandArguments); else - m_flags.Clear(lldb::eLaunchFlagGlobArguments); + m_flags.Clear(lldb::eLaunchFlagShellExpandArguments); } void |