From 2eb847479137143cc8f603bc70e3b7100ebf03b4 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Thu, 5 Mar 2026 19:37:18 +0100 Subject: include: Fix irm header connect/disconnect The order of the 'comp' and 'dst' char * parameters were reversed in the header compared to the implementation. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- include/ouroboros/irm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ouroboros/irm.h b/include/ouroboros/irm.h index d5e4f1ab..7cb71c21 100644 --- a/include/ouroboros/irm.h +++ b/include/ouroboros/irm.h @@ -53,13 +53,13 @@ int irm_bootstrap_ipcp(pid_t pid, const struct ipcp_config * conf); int irm_connect_ipcp(pid_t pid, - const char * component, const char * dst, + const char * component, qosspec_t qs); int irm_disconnect_ipcp(pid_t pid, - const char * component, - const char * dst); + const char * dst, + const char * component); int irm_bind_program(const char * prog, const char * name, -- cgit v1.2.3