From a2c72f58897eb598701db35ce7f127fe25b5a546 Mon Sep 17 00:00:00 2001 From: Clay Chang Date: Thu, 15 Jun 2023 22:13:27 +0800 Subject: [PATCH] Correct the ret code in unspported unicast peer mode (#221) --- src/transport/transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transport/transport.c b/src/transport/transport.c index b9605abb9..576a5e65d 100644 --- a/src/transport/transport.c +++ b/src/transport/transport.c @@ -359,7 +359,7 @@ int8_t _z_transport_unicast_open_peer(_z_transport_unicast_establish_param_t *pa (void)(param); (void)(zl); (void)(local_zid); - int8_t ret = _Z_ERR_CONFIG_UNSUPPORTED_CLIENT_MULTICAST; + int8_t ret = _Z_ERR_CONFIG_UNSUPPORTED_PEER_UNICAST; // @TODO: not implemented