From 2f07040b6e53468216c8a4cf2cc5b96f578e235e Mon Sep 17 00:00:00 2001 From: Sam Morris Date: Mar 15 2024 19:05:12 +0000 Subject: Use correct object path for 'ca' property of request objects in D-Bus API Fixes: https://issues.redhat.com/browse/RHEL-29246 Signed-off-by: Sam Morris --- diff --git a/src/tdbush.c b/src/tdbush.c index 29475fb..d440863 100644 --- a/src/tdbush.c +++ b/src/tdbush.c @@ -4402,7 +4402,7 @@ request_prop_get_ca(struct cm_context *ctx, void *parent, ca = cm_get_ca_by_nickname(ctx, entry->cm_ca_nickname); if (ca != NULL) { return talloc_asprintf(parent, "%s/%s", - CM_DBUS_REQUEST_PATH, + CM_DBUS_CA_PATH, ca->cm_busname); } }