diff src/event/ngx_event_openssl.c @ 3155:e720c4a68ee0

fix debug log message
author Igor Sysoev <igor@sysoev.ru>
date Thu, 24 Sep 2009 14:47:10 +0000
parents 823f72db46c0
children d4cc5a450ee9
line wrap: on
line diff
--- a/src/event/ngx_event_openssl.c	Thu Sep 24 14:45:28 2009 +0000
+++ b/src/event/ngx_event_openssl.c	Thu Sep 24 14:47:10 2009 +0000
@@ -1588,7 +1588,7 @@
     hash = ngx_crc32_short(sess->session_id, sess->session_id_length);
 
     ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0,
-                   "http ssl new session: %08XD:%d:%d",
+                   "ssl new session: %08XD:%d:%d",
                    hash, sess->session_id_length, len);
 
     sess_id->node.key = hash;
@@ -1651,7 +1651,7 @@
     *copy = 0;
 
     ngx_log_debug2(NGX_LOG_DEBUG_EVENT, c->log, 0,
-                   "http ssl get session: %08XD:%d", hash, len);
+                   "ssl get session: %08XD:%d", hash, len);
 
     shm_zone = SSL_CTX_get_ex_data(SSL_get_SSL_CTX(ssl_conn),
                                    ngx_ssl_session_cache_index);
@@ -1765,7 +1765,7 @@
     hash = ngx_crc32_short(id, len);
 
     ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ngx_cycle->log, 0,
-                   "http ssl remove session: %08XD:%uz", hash, len);
+                   "ssl remove session: %08XD:%uz", hash, len);
 
     shpool = (ngx_slab_pool_t *) shm_zone->shm.addr;