Signed-off-by: xuraoqing <xuraoqing@huawei.com> (cherry picked from commit c154fee26edd16d9df9f3125c987f760b80fcbd6)
32 lines
1023 B
Diff
32 lines
1023 B
Diff
From e2106c946c933759f0769e5179bb9f743abc0574 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Tikhonov <atikhono@redhat.com>
|
|
Date: Tue, 21 Mar 2023 17:19:18 +0100
|
|
Subject: [PATCH] SUDO: fix mistype
|
|
|
|
Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com>
|
|
Reviewed-by: Justin Stephenson <jstephen@redhat.com>
|
|
|
|
Reference:https://github.com/SSSD/sssd/commit/e2106c946c933759f0769e5179bb9f743abc0574
|
|
Conflict:NA
|
|
|
|
---
|
|
src/responder/sudo/sudosrv_query.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/responder/sudo/sudosrv_query.c b/src/responder/sudo/sudosrv_query.c
|
|
index 5b0edb644..a868ebeed 100644
|
|
--- a/src/responder/sudo/sudosrv_query.c
|
|
+++ b/src/responder/sudo/sudosrv_query.c
|
|
@@ -235,7 +235,7 @@ errno_t sudosrv_build_response(TALLOC_CTX *mem_ctx,
|
|
if (ret != EOK) {
|
|
goto fail;
|
|
}
|
|
- DEBUG(SSSDBG_TRACE_INTERNAL, "rules_num: [%"PRIu32"]\n", error);
|
|
+ DEBUG(SSSDBG_TRACE_INTERNAL, "rules_num: [%"PRIu32"]\n", rules_num);
|
|
|
|
/* rules */
|
|
for (i = 0; i < rules_num; i++) {
|
|
--
|
|
2.33.0
|
|
|