From 035edb69a3a569d848d71a1825d831d4bc4ff947 Mon Sep 17 00:00:00 2001 From: Stephen D <webmaster@scd31.com> Date: Thu, 14 Dec 2023 07:55:58 -0400 Subject: [PATCH] fix param order, again --- src/gate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gate.rs b/src/gate.rs index 1dd83d4..b6e8b6d 100644 --- a/src/gate.rs +++ b/src/gate.rs @@ -38,7 +38,7 @@ pub fn beacon_forever( let mut packet = Packet::new(&mut buf); packet .add_identification( - Identification::new(c.icon, &c.callsign, c.ssid).context( + Identification::new(&c.callsign, c.ssid, c.icon).context( "Config does not describe a valid identification (callsign, ssid, icon)", )?, ) -- GitLab