]> git.sur5r.net Git - openldap/commitdiff
const'ify and remove lint
authorKurt Zeilenga <kurt@openldap.org>
Wed, 19 Dec 2001 21:22:04 +0000 (21:22 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 19 Dec 2001 21:22:04 +0000 (21:22 +0000)
libraries/liblber/bprint.c
libraries/liblber/dtest.c
libraries/liblber/etest.c
libraries/liblber/lber-int.h
libraries/liblber/nt_err.c
libraries/liblber/options.c

index 2d341b771a83155c46d5de8efeeaf2de948bcc06..1ede28f4b4c2845eae05430fb1d0909a6c8bec64 100644 (file)
@@ -14,9 +14,7 @@
 
 #include "lber-int.h"
 
-typedef void (*BER_LOG_FN) LDAP_P((FILE *file, char *subsys, int level, const char *fmt, va_list vl));
-
-#define        ber_log_check(errlvl, loglvl)   (errlvl & loglvl)
+#define        ber_log_check(errlvl, loglvl)   ((errlvl) & (loglvl))
 
 BER_LOG_FN ber_int_log_proc = NULL;
 
@@ -71,7 +69,11 @@ BER_LOG_PRINT_FN ber_pvt_log_print = ber_error_print;
  * lber log 
  */
 
-int ber_pvt_log_output( char *subsystem, int level, const char *fmt, ... )
+int ber_pvt_log_output(
+       const char *subsystem,
+       int level,
+       const char *fmt,
+       ... )
 {
        char buf[ 1024 ];
        va_list vl;
@@ -244,7 +246,7 @@ int ber_output_dump(
              (long) ber->ber_end,
              (long) len );
 
-    ber_pvt_log_output( subsys, level, "%s", buf );
+    (void) ber_pvt_log_output( subsys, level, "%s", buf );
 
 #define BP_OFFSET 9
 #define BP_GRAPH 60
@@ -261,7 +263,9 @@ int ber_output_dump(
         unsigned off;
         
         if( !n ) {
-            if( i ) ber_pvt_log_output( subsys, level, "%s", line );
+            if( i ) {
+                               (void) ber_pvt_log_output( subsys, level, "%s", line );
+                       }
             memset( line, ' ', sizeof(line)-2 );
             line[sizeof(line)-2] = '\n';
             line[sizeof(line)-1] = '\0';
@@ -288,7 +292,7 @@ int ber_output_dump(
         }
     }
 
-    ber_pvt_log_output( subsys, level, "%s", line );
+    return ber_pvt_log_output( subsys, level, "%s", line );
 }
 #endif
 
@@ -333,7 +337,7 @@ ber_dump(
                (long) ber->ber_end,
                (long) len );
 
-       (*ber_pvt_log_print)( buf );
+       (void) (*ber_pvt_log_print)( buf );
 
        ber_bprint( ber->ber_ptr, len );
 }
index 633d42ed7edaaf8ffa3652fbc46af920dee91132..937f8deaf80bdf5c5b385d126e2b2d4ea3dfd2b5 100644 (file)
@@ -31,7 +31,7 @@
 
 #include <lber.h>
 
-static void usage( char *name )
+static void usage( const char *name )
 {
        fprintf( stderr, "usage: %s fmt\n", name );
 }
index 0b91ba75ce0a37ec999269b46ecb2a19c3c32716..863cd7e563d3e9bbf3ccaeae368a1264934e98a5 100644 (file)
 
 #include "lber.h"
 
-static void usage( char *name )
+static void usage( const char *name )
 {
        fprintf( stderr, "usage: %s fmtstring\n", name );
 }
 
-static char* getbuf() {
+static char* getbuf( void ) {
        char *p;
        static char buf[128];
 
index 73f3238e4f1b4d187e9f58e72d30fd4d8ddaa2a9..37bd015c678a859d90a9e456c47a44ba1483f1ac 100644 (file)
@@ -24,6 +24,9 @@
 
 LDAP_BEGIN_DECL
 
+typedef void (*BER_LOG_FN)(FILE *file,
+       const char *subsys, int level, const char *fmt, va_list vl );
+
 LBER_V (BER_ERRNO_FN) ber_int_errno_fn;
 
 struct lber_options {
@@ -46,6 +49,11 @@ struct lber_options {
 #    endif
 #endif
 
+LBER_F( int ) ber_pvt_log_output(
+       const char *subsystem,
+       int level,
+       const char *fmt, ... );
+
 #define LBER_UNINITIALIZED             0x0
 #define LBER_INITIALIZED               0x1
 #define LBER_VALID_BERELEMENT  0x2
index e5f64691d19dda4f4f876d8eb643bdc6ec936b09..bc3f4e7cebce0d10acb377949b415733e61ef911 100644 (file)
@@ -76,7 +76,7 @@ char *ber_pvt_wsa_err2string( int err )
                LBER_RETSTR( WSA_E_NO_MORE )
                LBER_RETSTR( WSA_E_CANCELLED )
                LBER_RETSTR( WSAEREFUSED )
-#endif // HAVE_WINSOCK2        
+#endif /* HAVE_WINSOCK2        */
 
                LBER_RETSTR( WSAHOST_NOT_FOUND )
                LBER_RETSTR( WSATRY_AGAIN )
index 64e7fcc4662ceae3ae4589f737a5fcbbca7d7fbf..711be28d3616148913fa7acd9dc0f4ca09779e1f 100644 (file)
@@ -11,7 +11,6 @@
 #include "lber-int.h"
 
 /* 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;