From 8f3933a5a41bfed6b7b1ee8cc7742f48ef8a256e Mon Sep 17 00:00:00 2001 From: Michael Sandstedt Date: Fri, 7 Jan 2022 14:55:52 -0600 Subject: [PATCH] Fix #13377 for compatibility with #13330 The pull requests #13330 and #13377 were merged around the same time, and have caused a small build breakage. This fixes it. --- examples/shell/shell_common/cmd_server.cpp | 4 ++-- third_party/pigweed/repo | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/shell/shell_common/cmd_server.cpp b/examples/shell/shell_common/cmd_server.cpp index e59032c7c6ac98..13698bb17792e6 100644 --- a/examples/shell/shell_common/cmd_server.cpp +++ b/examples/shell/shell_common/cmd_server.cpp @@ -107,8 +107,8 @@ static CHIP_ERROR CmdAppServerUdcPort(int argc, char ** argv) static bool PrintServerSession(void * context, SessionHandle & session) { streamer_printf(streamer_get(), "session id=0x%04x peerSessionId=0x%04x peerNodeId=0x%016" PRIx64 " fabricIdx=%d\r\n", - session.GetLocalSessionId().Value(), session.GetPeerSessionId().Value(), session.GetPeerNodeId(), - session.GetFabricIndex()); + session->AsSecureSession()->GetLocalSessionId(), session->AsSecureSession()->GetPeerSessionId(), + session->AsSecureSession()->GetPeerNodeId(), session->AsSecureSession()->GetFabricIndex()); return true; } diff --git a/third_party/pigweed/repo b/third_party/pigweed/repo index f30bce8bf2513e..444f6d0df8a002 160000 --- a/third_party/pigweed/repo +++ b/third_party/pigweed/repo @@ -1 +1 @@ -Subproject commit f30bce8bf2513e924f461da6f2e7d1f2620a89f3 +Subproject commit 444f6d0df8a002a7c577066dcb1eca939c0a6b13