From ec40c7c50f1ce93255c788b41d4771ca84e68a64 Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Fri, 10 May 2024 16:58:04 +0200 Subject: [PATCH] fix(sinsp): remove wrong unix parsing logic Signed-off-by: Andrea Terzolo --- userspace/libsinsp/parsers.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/userspace/libsinsp/parsers.cpp b/userspace/libsinsp/parsers.cpp index 301916495f..d73cf45149 100644 --- a/userspace/libsinsp/parsers.cpp +++ b/userspace/libsinsp/parsers.cpp @@ -3180,11 +3180,6 @@ void sinsp_parser::parse_connect_enter(sinsp_evt *evt){ // Add the friendly name to the fd info // evt->get_fd_info()->m_name = evt->get_param_as_str(1, &parstr, sinsp_evt::PF_SIMPLE); - - // - // Update the FD with this tuple - // - evt->get_fd_info()->set_unix_info(packed_data); } // @@ -5775,4 +5770,4 @@ int sinsp_parser::get_fd_location(uint16_t etype) break; } return location; -} \ No newline at end of file +}