Disable debug printouts.
authorLinus Nordberg <linus@nordu.net>
Tue, 5 Oct 2010 07:09:31 +0000 (09:09 +0200)
committerLinus Nordberg <linus@nordu.net>
Tue, 5 Oct 2010 07:09:31 +0000 (09:09 +0200)
lib/Makefile.am
lib/packet.c

index 7e3f392..6f01c9a 100644 (file)
@@ -15,4 +15,4 @@ libradsec_la_SOURCES = \
        request.c \
        radsec.c
 libradsec_la_LDFLAGS = -version-info 0:0:0
-libradsec_la_CFLAGS = $(CFLAGS) -DDEBUG #-DDEBUG_LEVENT
+libradsec_la_CFLAGS = $(CFLAGS) #-DDEBUG -DDEBUG_LEVENT
index 1f20d50..54bfc01 100644 (file)
@@ -172,7 +172,6 @@ _read_cb (struct bufferevent *bev, void *ctx)
     assert (!"short packet");
 }
 
-#if defined (DEBUG)
 static void
 _evlog_cb (int severity, const char *msg)
 {
@@ -200,7 +199,6 @@ _evlog_cb (int severity, const char *msg)
     }
   fprintf (stderr, "libevent: [%s] %s\n", sevstr, msg);
 }
-#endif /* DEBUG */
 
 static int
 _init_evb (struct rs_connection *conn)
@@ -209,8 +207,8 @@ _init_evb (struct rs_connection *conn)
     {
 #if defined (DEBUG)
       event_enable_debug_mode ();
-      event_set_log_callback (_evlog_cb);
 #endif
+      event_set_log_callback (_evlog_cb);
       conn->evb = event_base_new ();
       if (!conn->evb)
        return rs_err_conn_push_fl (conn, RSE_EVENT, __FILE__, __LINE__,