33 lines
957 B
Diff
33 lines
957 B
Diff
|
From 5cf1723c308e21cdbe9b98ed2aaa42cb997456fb Mon Sep 17 00:00:00 2001
|
||
|
From: Sumit Bose <sbose@redhat.com>
|
||
|
Date: Fri, 15 Mar 2019 14:31:12 +0100
|
||
|
Subject: [PATCH] Increment kvno after password change with user creds
|
||
|
|
||
|
Originally only the host credential part was fixed in the context of
|
||
|
https://bugs.freedesktop.org/show_bug.cgi?id=91185. This patch adds the
|
||
|
fix to the case when user credentials are used.
|
||
|
|
||
|
Related to https://bugzilla.redhat.com/show_bug.cgi?id=1642546
|
||
|
---
|
||
|
library/adenroll.c | 4 ++++
|
||
|
1 file changed, 4 insertions(+)
|
||
|
|
||
|
diff --git a/library/adenroll.c b/library/adenroll.c
|
||
|
index e02f403..58362c2 100644
|
||
|
--- a/library/adenroll.c
|
||
|
+++ b/library/adenroll.c
|
||
|
@@ -1057,6 +1057,10 @@ set_password_with_user_creds (adcli_enroll *enroll)
|
||
|
#endif
|
||
|
} else {
|
||
|
_adcli_info ("Set computer password");
|
||
|
+ if (enroll->kvno > 0) {
|
||
|
+ enroll->kvno++;
|
||
|
+ _adcli_info ("kvno incremented to %d", enroll->kvno);
|
||
|
+ }
|
||
|
res = ADCLI_SUCCESS;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.20.1
|
||
|
|