28 lines
816 B
Diff
28 lines
816 B
Diff
|
From 0d8482d4ed83677424f6c9428672d225bfdfe4d9 Mon Sep 17 00:00:00 2001
|
||
|
From: Sumit Bose <sbose@redhat.com>
|
||
|
Date: Thu, 3 Jun 2021 15:03:20 +0200
|
||
|
Subject: [PATCH] Fix for dont-expire-password option and join
|
||
|
|
||
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1769644
|
||
|
---
|
||
|
library/adenroll.c | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/library/adenroll.c b/library/adenroll.c
|
||
|
index 7653f89..f00d179 100644
|
||
|
--- a/library/adenroll.c
|
||
|
+++ b/library/adenroll.c
|
||
|
@@ -859,7 +859,8 @@ create_computer_account (adcli_enroll *enroll,
|
||
|
uac |= UAC_TRUSTED_FOR_DELEGATION;
|
||
|
}
|
||
|
|
||
|
- if (!adcli_enroll_get_dont_expire_password (enroll)) {
|
||
|
+ if (enroll->dont_expire_password_explicit
|
||
|
+ && !adcli_enroll_get_dont_expire_password (enroll)) {
|
||
|
uac &= ~(UAC_DONT_EXPIRE_PASSWORD);
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.31.1
|
||
|
|