]> git.sur5r.net Git - openldap/commitdiff
s/HAVE_SYSLOG/LDAP_SYSLOG/g
authorKurt Zeilenga <kurt@openldap.org>
Wed, 19 May 1999 01:58:23 +0000 (01:58 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 19 May 1999 01:58:23 +0000 (01:58 +0000)
Use <ac/syslog.h>

libraries/libldbm/ldbm.c

index 89a6c326ef53aba186baeb61d26bc794208a284c..08c3299520ba9dff61acf4604ca433df29790a4b 100644 (file)
@@ -86,20 +86,14 @@ ldbm_malloc( size_t size )
        return( calloc( 1, size ));
 }
 
-#ifdef HAVE_SYSLOG
-#ifdef HAVE_SYSLOG_H
-#include "syslog.h"
-#else
-/* quick hack */
-#define LOG_INFO 1
-extern int syslog(int, char*, ...);
+#ifdef LDAP_SYSLOG
+#include <ac/syslog.h>
 #endif
-#endif /* HAVE_SYSLOG */
 
 static void
 ldbm_db_errcall( const char *prefix, char *message )
 {
-#ifdef HAVE_SYSLOG
+#ifdef LDAP_SYSLOG
        syslog( LOG_INFO, "ldbm_db_errcall(): %s %s", prefix, message );
 #endif
 }
@@ -136,7 +130,7 @@ int ldbm_initialize( void )
                        sprintf( error, "%s\n", strerror( err ));
                }
 
-#ifdef HAVE_SYSLOG
+#ifdef LDAP_SYSLOG
                syslog( LOG_INFO,
                        "ldbm_initialize(): FATAL error in db_appinit() : %s\n",
                        error );