================ @@ -3969,30 +3987,43 @@ rnb_err_t RNBRemote::HandlePacket_v(const char *p) { process_username = pw->pw_name; } DNBLogError("Tried to attach to process with uid mismatch"); - std::string return_message = "E96;"; - std::string msg = "tried to attach to process as user '" - + my_username + "' and process is running " - "as user '" + process_username + "'"; - return_message += cstring_to_asciihex_string(msg.c_str()); + std::string return_message = "E96"; + if (m_enable_error_strings) { + return_message += ";"; + std::string msg = "tried to attach to process as user '" + + my_username + + "' and process is running " + "as user '" + + process_username + "'"; + return_message += cstring_to_asciihex_string(msg.c_str()); + } return SendPacket(return_message); } if (!login_session_has_gui_access() && !developer_mode_enabled()) { DNBLogError("Developer mode is not enabled and this is a " "non-interactive session"); - std::string return_message = "E96;"; - return_message += cstring_to_asciihex_string("developer mode is " + std::string return_message = "E96"; + if (m_enable_error_strings) { + return_message += ";"; + return_message += + cstring_to_asciihex_string("developer mode is " "not enabled on this machine " "and this is a non-interactive " "debug session."); + } return SendPacket(return_message); } if (!login_session_has_gui_access()) { DNBLogError("This is a non-interactive session"); - std::string return_message = "E96;"; - return_message += cstring_to_asciihex_string("this is a " + std::string return_message = "E96"; + if (m_enable_error_strings) { + return_message += ";"; + return_message += + cstring_to_asciihex_string("this is a " "non-interactive debug session, " "cannot get permission to debug " "processes."); ---------------- clayborg wrote:
this is ended with a '.', we pick how we want to do it and do it consistently https://github.com/llvm/llvm-project/pull/82593 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits