Browse Source

Correct function prototype for repl session hook

The previous patch had a mangled function name in
the function prototype.  This corrects the name.
Nathan Kinder 15 years ago
parent
commit
ecb1e8a90a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ldap/servers/plugins/replication/repl5.h

+ 1 - 1
ldap/servers/plugins/replication/repl5.h

@@ -602,7 +602,7 @@ Repl_Connection *windows_conn_new(Repl_Agmt *agmt);
 
 /* repl_session_plugin.c */
 void repl_session_plugin_init();
-void repl_session_plugin_call_init_agmt_cb(Repl_Agmt *ra);
+void repl_session_plugin_call_agmt_init_cb(Repl_Agmt *ra);
 int repl_session_plugin_call_pre_acquire_cb(const Repl_Agmt *ra, int is_total,
         char **data_guid, struct berval **data);
 int repl_session_plugin_call_post_acquire_cb(const Repl_Agmt *ra, int is_total,