comparison src/core/ngx_string.c @ 503:b1648294f693 release-0.1.26

nginx-0.1.26-RELEASE import *) 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 <igor@sysoev.ru>
date Tue, 22 Mar 2005 16:02:46 +0000
parents d4ea69372b94
children dadfa78d2270
comparison
equal deleted inserted replaced
502:2017b79d7db5 503:b1648294f693
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