From 5faaf21dde1ccf27f9dd66c2f414073632b7c827 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Tue, 19 Mar 2024 23:33:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Don't=20print=20GUID=20in=20the?= =?UTF-8?q?=20address?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit zbus 4 now includes the GUID in the address's string representation. Without this change, zbus (and probably other libraries) will fail to parse the address. --- src/bin/busd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/busd.rs b/src/bin/busd.rs index 404395b..8d0e138 100644 --- a/src/bin/busd.rs +++ b/src/bin/busd.rs @@ -84,7 +84,7 @@ async fn main() -> Result<()> { } if args.print_address { - println!("{},guid={}", bus.address(), bus.guid()); + println!("{}", bus.address()); } // FIXME: How to handle this gracefully on Windows?