comparison fastcgi_request_buffering.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
153 153
154 # http://www.fastcgi.com/devkit/doc/fcgi-spec.html 154 # http://www.fastcgi.com/devkit/doc/fcgi-spec.html
155 155
156 sub fastcgi_read_record($) { 156 sub fastcgi_read_record($) {
157 my ($buf) = @_; 157 my ($buf) = @_;
158 158 my $h;
159 my ($n, $h, $header);
160 159
161 return undef unless length $$buf; 160 return undef unless length $$buf;
162 161
163 @{$h}{qw/ version type id clen plen /} = unpack("CCnnC", $$buf); 162 @{$h}{qw/ version type id clen plen /} = unpack("CCnnC", $$buf);
164 163