35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 0eae0862069e4bbbdd87b809193fc873f3003cff Mon Sep 17 00:00:00 2001
|
|
From: Alexey Tikhonov <atikhono@redhat.com>
|
|
Date: Tue, 16 Aug 2022 21:48:43 +0200
|
|
Subject: [PATCH 5/6] CLIENT:MC: -1 is more appropriate initial value for fd
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Reviewed-by: Sumit Bose <sbose@redhat.com>
|
|
Reviewed-by: Tomáš Halman <thalman@redhat.com>
|
|
(cherry picked from commit 579cc0b266d5f8954bc71cfcd3fe68002d681a5f)
|
|
---
|
|
src/sss_client/nss_mc.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/sss_client/nss_mc.h b/src/sss_client/nss_mc.h
|
|
index de1496ccc..0f88521e9 100644
|
|
--- a/src/sss_client/nss_mc.h
|
|
+++ b/src/sss_client/nss_mc.h
|
|
@@ -67,9 +67,9 @@ struct sss_cli_mc_ctx {
|
|
};
|
|
|
|
#if HAVE_PTHREAD
|
|
-#define SSS_CLI_MC_CTX_INITIALIZER(mtx) {UNINITIALIZED, (mtx), 1, 0, NULL, 0, NULL, 0, NULL, 0, 0}
|
|
+#define SSS_CLI_MC_CTX_INITIALIZER(mtx) {UNINITIALIZED, (mtx), -1, 0, NULL, 0, NULL, 0, NULL, 0, 0}
|
|
#else
|
|
-#define SSS_CLI_MC_CTX_INITIALIZER {UNINITIALIZED, 1, 0, NULL, 0, NULL, 0, NULL, 0, 0}
|
|
+#define SSS_CLI_MC_CTX_INITIALIZER {UNINITIALIZED, -1, 0, NULL, 0, NULL, 0, NULL, 0, 0}
|
|
#endif
|
|
|
|
errno_t sss_nss_mc_get_ctx(const char *name, struct sss_cli_mc_ctx *ctx);
|
|
--
|
|
2.37.1
|
|
|