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
27 lines
869 B
Diff
27 lines
869 B
Diff
From d4b247e43fe1ea1b3713f3d8f493422d5adcc537 Mon Sep 17 00:00:00 2001
|
|
From: HouzuoGuo <guohouzuo@gmail.com>
|
|
Date: Fri, 13 Mar 2015 16:14:10 +0100
|
|
Subject: [PATCH] In monitor backend, do not return Connection0 entries as they
|
|
are created for internal use only.
|
|
|
|
---
|
|
servers/slapd/back-monitor/conn.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/servers/slapd/back-monitor/conn.c b/servers/slapd/back-monitor/conn.c
|
|
index 4d327f243..c4d3c6237 100644
|
|
--- a/servers/slapd/back-monitor/conn.c
|
|
+++ b/servers/slapd/back-monitor/conn.c
|
|
@@ -456,6 +456,11 @@ monitor_subsys_conn_create(
|
|
c != NULL;
|
|
c = connection_next( c, &connindex ) )
|
|
{
|
|
+ /* Connection 0 is created by connection_client_setup for internal use only */
|
|
+ if (c->c_connid == 0) {
|
|
+ continue;
|
|
+ }
|
|
+
|
|
monitor_entry_t *mp;
|
|
|
|
/* ignore outbound for now, nothing to show */
|