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

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