[Lldb-commits] [lldb] b198568 - Fix typeo in attach failed error message.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 14 23:31:33 PDT 2020


Author: Jason Molenda
Date: 2020-10-14T23:31:24-07:00
New Revision: b19856881c1624df8b667d672193be52dfa23846

URL: https://github.com/llvm/llvm-project/commit/b19856881c1624df8b667d672193be52dfa23846
DIFF: https://github.com/llvm/llvm-project/commit/b19856881c1624df8b667d672193be52dfa23846.diff

LOG: Fix typeo in attach failed error message.
<rdar://problem/70296751>

Added: 
    

Modified: 
    lldb/tools/debugserver/source/RNBRemote.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/tools/debugserver/source/RNBRemote.cpp b/lldb/tools/debugserver/source/RNBRemote.cpp
index b66cc8f583e8..aef41a5dba43 100644
--- a/lldb/tools/debugserver/source/RNBRemote.cpp
+++ b/lldb/tools/debugserver/source/RNBRemote.cpp
@@ -4052,8 +4052,8 @@ rnb_err_t RNBRemote::HandlePacket_v(const char *p) {
         if (strcmp (err_str, "unable to start the exception thread") == 0) {
           snprintf (err_str, sizeof (err_str) - 1,
                     "Not allowed to attach to process.  Look in the console "
-                    "messages (Console.app), near the debugserver entries "
-                    "when the attached failed.  The subsystem that denied "
+                    "messages (Console.app), near the debugserver entries, "
+                    "when the attach failed.  The subsystem that denied "
                     "the attach permission will likely have logged an "
                     "informative message about why it was denied.");
           err_str[sizeof (err_str) - 1] = '\0';


        


More information about the lldb-commits mailing list