Blame SOURCES/0010-Issue-4997-Function-declaration-compiler-error-on-1..patch

b2bc38
From 3909877f12e50556e844bc20e72870a4fa905ada Mon Sep 17 00:00:00 2001
b2bc38
From: James Chapman <jachapma@redhat.com>
b2bc38
Date: Tue, 9 Nov 2021 12:55:28 +0000
b2bc38
Subject: [PATCH 10/12] Issue 4997 - Function declaration compiler error on
b2bc38
 1.4.3
b2bc38
b2bc38
Bug description: Building the server on the 1.4.3 branch generates a
b2bc38
compiler error due to a typo in function declaration.
b2bc38
b2bc38
Fixes: https://github.com/389ds/389-ds-base/issues/4997
b2bc38
b2bc38
Reviewed by: @jchapman (one line commit rule)
b2bc38
---
b2bc38
 ldap/servers/slapd/slapi-private.h | 2 +-
b2bc38
 1 file changed, 1 insertion(+), 1 deletion(-)
b2bc38
b2bc38
diff --git a/ldap/servers/slapd/slapi-private.h b/ldap/servers/slapd/slapi-private.h
b2bc38
index 570765e47..d6d74e8a7 100644
b2bc38
--- a/ldap/servers/slapd/slapi-private.h
b2bc38
+++ b/ldap/servers/slapd/slapi-private.h
b2bc38
@@ -273,7 +273,7 @@ void *csngen_register_callbacks(CSNGen *gen, GenCSNFn genFn, void *genArg, Abort
b2bc38
 void csngen_unregister_callbacks(CSNGen *gen, void *cookie);
b2bc38
 
b2bc38
 /* debugging function */
b2bc38
-void csngen_dump_state(const CSNGen *gen);
b2bc38
+void csngen_dump_state(const CSNGen *gen, int severity);
b2bc38
 
b2bc38
 /* this function tests csn generator */
b2bc38
 void csngen_test(void);
b2bc38
-- 
b2bc38
2.31.1
b2bc38