comparison src/event/ngx_event_openssl.c @ 40:bc4fc02c96a3 NGINX_0_1_20

nginx 0.1.20 *) Feature: the new "script_filename" and "remote_port" parameters of the fastcgi_params directive. *) Bugfix: the FastCGI stderr stream was handled incorrectly.
author Igor Sysoev <http://sysoev.ru>
date Thu, 17 Feb 2005 00:00:00 +0300
parents 2879cd3a40cb
children 72eb30262aac
comparison
equal deleted inserted replaced
39:9a816ccfbf63 40:bc4fc02c96a3
110 for (s = &buf[1], d = buf; *s; s++) { 110 for (s = &buf[1], d = buf; *s; s++) {
111 if (*s == ' ' && *d == ' ') { 111 if (*s == ' ' && *d == ' ') {
112 continue; 112 continue;
113 } 113 }
114 114
115 if (*s == '\n' || *s == '\r') { 115 if (*s == LF || *s == CR) {
116 continue; 116 continue;
117 } 117 }
118 118
119 *++d = *s; 119 *++d = *s;
120 } 120 }