mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 13:09:42 -05:00
add typedef for log function that was in lber.h
This commit is contained in:
parent
f6f13d8ecb
commit
1217a452e9
2 changed files with 7 additions and 2 deletions
|
|
@ -14,6 +14,9 @@
|
|||
|
||||
#include "lber-int.h"
|
||||
|
||||
typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
|
||||
|
||||
|
||||
BER_LOG_FN ber_int_log_proc = NULL;
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -7,10 +7,12 @@
|
|||
|
||||
#include <ac/stdlib.h>
|
||||
#include <ac/string.h>
|
||||
|
||||
#include <ac/stdarg.h>
|
||||
#include "lber-int.h"
|
||||
|
||||
extern void * ber_pvt_err_file; /* bprint.c */
|
||||
/* bprint.c */
|
||||
typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
|
||||
extern void * ber_pvt_err_file;
|
||||
extern BER_LOG_FN ber_int_log_proc;
|
||||
|
||||
struct lber_options ber_int_options = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue