comparison src/core/ngx_string.c @ 52:0d75d65c642f NGINX_0_1_26

nginx 0.1.26 *) Change: the invalid client header lines are now ignored and logged at the info level. *) Change: the server name is also logged in error log. *) Feature: the ngx_http_auth_basic_module module and the auth_basic and auth_basic_user_file directives.
author Igor Sysoev <http://sysoev.ru>
date Tue, 22 Mar 2005 00:00:00 +0300
parents 72eb30262aac
children 818201e5a553
comparison
equal deleted inserted replaced
51:43f383e47efc 52:0d75d65c642f
73 * %S null-teminated wchar string 73 * %S null-teminated wchar string
74 * %C wchar 74 * %C wchar
75 */ 75 */
76 76
77 77
78 u_char * 78 u_char * ngx_cdecl
79 ngx_sprintf(u_char *buf, const char *fmt, ...) 79 ngx_sprintf(u_char *buf, const char *fmt, ...)
80 { 80 {
81 u_char *p; 81 u_char *p;
82 va_list args; 82 va_list args;
83 83
87 87
88 return p; 88 return p;
89 } 89 }
90 90
91 91
92 u_char * 92 u_char * ngx_cdecl
93 ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...) 93 ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...)
94 { 94 {
95 u_char *p; 95 u_char *p;
96 va_list args; 96 va_list args;
97 97