]> granicus.if.org Git - apache/commitdiff
* modules/ssl/ssl_engine_log.c (ssl_log_ssl_error): Use %lu to print
authorJoe Orton <jorton@apache.org>
Thu, 4 Mar 2004 21:54:09 +0000 (21:54 +0000)
committerJoe Orton <jorton@apache.org>
Thu, 4 Mar 2004 21:54:09 +0000 (21:54 +0000)
an unsigned long.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102856 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_log.c

index 914055c4545ab7d82efc782ecf8f5716f24a19a3..997bf76ce98a980ecfa6b060fe96b8f81c7e8b59 100644 (file)
@@ -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); 
         }
     }