comparison fastcgi_request_buffering_chunked.t @ 925:6bb1f2ccd386

Tests: removed unused variables.
author Andrey Zelenkov <zelenkov@nginx.com>
date Fri, 13 May 2016 14:46:07 +0300
parents 68a6678abae2
children e9064d691790
comparison
equal deleted inserted replaced
924:54680c434afa 925:6bb1f2ccd386
170 170
171 # http://www.fastcgi.com/devkit/doc/fcgi-spec.html 171 # http://www.fastcgi.com/devkit/doc/fcgi-spec.html
172 172
173 sub fastcgi_read_record($) { 173 sub fastcgi_read_record($) {
174 my ($buf) = @_; 174 my ($buf) = @_;
175 175 my $h;
176 my ($n, $h, $header);
177 176
178 return undef unless length $$buf; 177 return undef unless length $$buf;
179 178
180 @{$h}{qw/ version type id clen plen /} = unpack("CCnnC", $$buf); 179 @{$h}{qw/ version type id clen plen /} = unpack("CCnnC", $$buf);
181 180