Compilation errors in http.c and a segfault during "make verify" when
USE_DEBUG is defined.

Index: libevent/http.c
===================================================================
--- libevent/http.c     (revision 429)
+++ libevent/http.c     (working copy)
@@ -1174,7 +1174,7 @@
        if (strchr(value, '\r') != NULL || strchr(value, '\n') != NULL ||
            strchr(key, '\r') != NULL || strchr(key, '\n') != NULL) {
                /* drop illegal headers */
-               event_debug(("%s: dropping illegal header\n"));
+               event_debug(("%s: dropping illegal header\n", __func__));
                return (-1);
        }

@@ -1499,7 +1499,7 @@
        evcon->fd = bind_socket(evcon->bind_address, 0);
        if (evcon->fd == -1) {
                event_debug(("%s: failed to bind to \"%s\"",
-                       __func__, bind_address));
+                       __func__, evcon->bind_address));
                return (-1);
        }

@@ -2439,7 +2439,7 @@

        if (ai == NULL) {
                event_debug(("%s: make_addrinfo: \"%s:%d\"",
-                       __func__, evcon->address, evcon->port));
+                       __func__, address, port));
                return (-1);
        }

_______________________________________________
Libevent-users mailing list
Libevent-users@monkey.org
http://monkey.org/mailman/listinfo/libevent-users

Reply via email to