From 0df3b9222a7c7ca49a37c70be557b935246b5df8 Mon Sep 17 00:00:00 2001 From: "David M. Syzdek" Date: Sat, 18 Feb 2012 05:29:30 -0900 Subject: [PATCH] ITS#7173 Fixing prototype of function in manpage to match prototype in C header. The prototype for ldap_modify_ext() in the C header file declares msgidp as "int *", however the current manpage declares msgidp as "int **". This patch updates the manpage to accurately reflect the C header. Signed-off-by: David M. Syzdek --- doc/man/man3/ldap_modify.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man/man3/ldap_modify.3 b/doc/man/man3/ldap_modify.3 index 08417b9a9c..721e26190e 100644 --- a/doc/man/man3/ldap_modify.3 +++ b/doc/man/man3/ldap_modify.3 @@ -20,7 +20,7 @@ char *\fIdn\fB, LDAPMod *\fImods[]\fB, LDAPControl **\fIsctrls\fB, LDAPControl **\fIcctrls\fB, -int **\fImsgidp\fB ); +int *\fImsgidp\fB ); .RE .LP .nf -- 2.39.5