comparison src/event/ngx_event_openssl.c @ 491:0f836f0288ee release-0.1.20

nginx-0.1.20-RELEASE import *) 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 <igor@sysoev.ru>
date Thu, 17 Feb 2005 11:59:36 +0000
parents 45a460f82aec
children d4ea69372b94
comparison
equal deleted inserted replaced
490:eb7935b36652 491:0f836f0288ee
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 }