diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectPlatform.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp index e2136d32cac..c9f776ed7ee 100644 --- a/lldb/source/Commands/CommandObjectPlatform.cpp +++ b/lldb/source/Commands/CommandObjectPlatform.cpp @@ -653,27 +653,27 @@ protected: break; case 'n': - match_info.GetProcessInfo().SetName (option_arg); + match_info.GetProcessInfo().GetExecutableFile().SetFile (option_arg, false); match_info.SetNameMatchType (eNameMatchEquals); break; case 'e': - match_info.GetProcessInfo().SetName (option_arg); + match_info.GetProcessInfo().GetExecutableFile().SetFile (option_arg, false); match_info.SetNameMatchType (eNameMatchEndsWith); break; case 's': - match_info.GetProcessInfo().SetName (option_arg); + match_info.GetProcessInfo().GetExecutableFile().SetFile (option_arg, false); match_info.SetNameMatchType (eNameMatchStartsWith); break; case 'c': - match_info.GetProcessInfo().SetName (option_arg); + match_info.GetProcessInfo().GetExecutableFile().SetFile (option_arg, false); match_info.SetNameMatchType (eNameMatchContains); break; case 'r': - match_info.GetProcessInfo().SetName (option_arg); + match_info.GetProcessInfo().GetExecutableFile().SetFile (option_arg, false); match_info.SetNameMatchType (eNameMatchRegularExpression); break; |