]> git.sur5r.net Git - openldap/blobdiff - libraries/liblber/etest.c
nt_err.c has moved from lutil to lber
[openldap] / libraries / liblber / etest.c
index 0099e82ff52638869eb77709a7c57d2f2432cb73..9d235b8554e3cc534843d7942f8847616d39d1e6 100644 (file)
@@ -1,4 +1,5 @@
 /* test.c - lber encoding test program */
+/* $OpenLDAP$ */
 /*
  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
@@ -11,7 +12,8 @@
 #include "portable.h"
 
 #include <stdio.h>
-#include <stdlib.h>
+
+#include <ac/stdlib.h>
 
 #include <ac/socket.h>
 #include <ac/string.h>
@@ -21,7 +23,7 @@
 #include <console.h>
 #endif /* HAVE_CONSOLE_H */
 
-#include "lber-int.h"
+#include "lber.h"
 
 static void usage( char *name )
 {
@@ -51,7 +53,8 @@ main( int argc, char **argv )
        Sockbuf         *sb;
 
        /* enable debugging */
-       ber_int_debug = -1;
+       int ival = -1;
+       ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ival );
 
        if ( argc < 2 ) {
                usage( argv[0] );
@@ -70,12 +73,12 @@ main( int argc, char **argv )
 
 #else
        fd = fileno(stdout);
-#endif /* MACOS */
+#endif
 
        sb = ber_sockbuf_alloc_fd( fd );
 
        if( sb == NULL ) {
-               perror( "lber_sockbuf_alloc_fd" );
+               perror( "ber_sockbuf_alloc_fd" );
                return( EXIT_FAILURE );
        }
 
@@ -127,9 +130,7 @@ main( int argc, char **argv )
                        break;
 
                default:
-#ifdef LDAP_LIBUI
-                       fprintf( stderr, "unknown fmt %c\n", *fmt );
-#endif /* LDAP_LIBUI */
+                       fprintf( stderr, "encode: unknown fmt %c\n", *fmt );
                        rc = -1;
                        break;
                }