Commit a5fbd951 authored by Joe Orton's avatar Joe Orton
Browse files

* modules/ssl/ssl_engine_log.c (ssl_log_ssl_error): Use %lu to print

an unsigned long.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@102856 13f79535-47bb-0310-9956-ffa450edef68
parent 804adcc7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -91,12 +91,12 @@ void ssl_log_ssl_error(const char *file, int line, int level, server_rec *s)

        if (annotation) {
            ap_log_error(file, line, level, 0, s,
                         "SSL Library Error: %ld %s %s",
                         "SSL Library Error: %lu %s %s",
                         e, err, annotation); 
        }
        else {
            ap_log_error(file, line, level, 0, s,
                         "SSL Library Error: %ld %s",
                         "SSL Library Error: %lu %s",
                         e, err); 
        }
    }