forked from pool/openldap2
Jan Engelhardt
17245dd92c
- Backported one hunk from upstream commit fb9e6a81bbee as openldap2-fb9e6a81bbee.patch to fix incompatible pointer type being passed to a function which is diagnosed as an error by GCC 14. If the request is OK, please forward it to Factory soon so that we can switch the default compiler. Thanks! OBS-URL: https://build.opensuse.org/request/show/1190307 OBS-URL: https://build.opensuse.org/package/show/network:ldap/openldap2?expand=0&rev=323
29 lines
979 B
Diff
29 lines
979 B
Diff
From fb9e6a81bbee880549e7ec18f0a74ddddbd2d1ab Mon Sep 17 00:00:00 2001
|
|
From: Stephen Gallagher <sgallagh@redhat.com>
|
|
Date: Tue, 6 Feb 2024 21:38:24 -0500
|
|
Subject: [PATCH] ITS#10171 - Explicitly cast private values
|
|
|
|
Fixes issues with -Werror=incompatible-pointer-types
|
|
|
|
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
|
|
---
|
|
servers/slapd/config.c | 2 +-
|
|
servers/slapd/overlays/constraint.c | 2 +-
|
|
servers/slapd/overlays/dyngroup.c | 2 +-
|
|
servers/slapd/overlays/valsort.c | 2 +-
|
|
4 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/servers/slapd/config.c b/servers/slapd/config.c
|
|
index 80333f359c..987c862d91 100644
|
|
--- a/servers/slapd/config.c
|
|
+++ b/servers/slapd/config.c
|
|
@@ -151,7 +151,7 @@ int config_check_vals(ConfigTable *Conf, ConfigArgs *c, int check_only ) {
|
|
int rc, arg_user, arg_type, arg_syn, iarg;
|
|
unsigned uiarg;
|
|
long larg;
|
|
- size_t ularg;
|
|
+ unsigned long ularg;
|
|
ber_len_t barg;
|
|
|
|
if(Conf->arg_type == ARG_IGNORED) {
|