summaryrefslogtreecommitdiff
path: root/src/irmd/oap/cli.c
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2026-06-21 13:18:35 +0200
committerSander Vrijders <sander@ouroboros.rocks>2026-06-29 08:32:59 +0200
commita169a1cef5332a409efc2db07bcc1ae9b72f217e (patch)
tree73475b759b22db778527ef4d7ae016bc12398670 /src/irmd/oap/cli.c
parent47034834790e778f28b082842b3ed1c7bd44f29a (diff)
downloadouroboros-a169a1cef5332a409efc2db07bcc1ae9b72f217e.tar.gz
ouroboros-a169a1cef5332a409efc2db07bcc1ae9b72f217e.zip
lib: Group sec_config authentication fields
Nest the flat req_auth and cacert members of struct sec_config into a sub-struct a { req; cacert; }, keeping the authentication settings together. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd/oap/cli.c')
-rw-r--r--src/irmd/oap/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irmd/oap/cli.c b/src/irmd/oap/cli.c
index b3d6d586..2a57d12e 100644
--- a/src/irmd/oap/cli.c
+++ b/src/irmd/oap/cli.c
@@ -96,7 +96,7 @@ int load_cli_kex_config(const struct name_info * info,
memset(cfg, 0, sizeof(*cfg));
/* A client authenticates the server by default, like an https client */
- cfg->req_auth = OAP_CLIENT_AUTH_DEFAULT;
+ cfg->a.req = OAP_CLIENT_AUTH_DEFAULT;
return load_kex_config(info->name, info->c.sec, cfg);
}