Blame SOURCES/0001-tools-add-missing-use-ldaps-option-to-update-and-tes.patch

e06942
From 76ca1e6737742208d83e016d43a3379e378f8d90 Mon Sep 17 00:00:00 2001
e06942
From: Sumit Bose <sbose@redhat.com>
e06942
Date: Wed, 14 Oct 2020 17:44:10 +0200
e06942
Subject: [PATCH] tools: add missing use-ldaps option to update and testjoin
e06942
e06942
When adding the use-ldaps option the update and testjoin sub-commands
e06942
were forgotten.
e06942
e06942
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1883467
e06942
---
e06942
 tools/computer.c | 2 ++
e06942
 1 file changed, 2 insertions(+)
e06942
e06942
diff --git a/tools/computer.c b/tools/computer.c
e06942
index 24ea258..5a97d8b 100644
e06942
--- a/tools/computer.c
e06942
+++ b/tools/computer.c
e06942
@@ -491,6 +491,7 @@ adcli_tool_computer_update (adcli_conn *conn,
e06942
 	struct option options[] = {
e06942
 		{ "domain", required_argument, NULL, opt_domain },
e06942
 		{ "domain-controller", required_argument, NULL, opt_domain_controller },
e06942
+		{ "use-ldaps", no_argument, 0, opt_use_ldaps },
e06942
 		{ "host-fqdn", required_argument, 0, opt_host_fqdn },
e06942
 		{ "computer-name", required_argument, 0, opt_computer_name },
e06942
 		{ "host-keytab", required_argument, 0, opt_host_keytab },
e06942
@@ -612,6 +613,7 @@ adcli_tool_computer_testjoin (adcli_conn *conn,
e06942
 	struct option options[] = {
e06942
 		{ "domain", required_argument, NULL, opt_domain },
e06942
 		{ "domain-controller", required_argument, NULL, opt_domain_controller },
e06942
+		{ "use-ldaps", no_argument, 0, opt_use_ldaps },
e06942
 		{ "host-keytab", required_argument, 0, opt_host_keytab },
e06942
 		{ "verbose", no_argument, NULL, opt_verbose },
e06942
 		{ "help", no_argument, NULL, 'h' },
e06942
-- 
e06942
2.28.0
e06942