summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/perl/nginx.pm
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-04-21 07:43:23 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-04-21 07:43:23 +0000
commit60472812081386c0f2fda3139aef07a10f095173 (patch)
treee70127db410618347136f82f0fd96c393795102d /src/http/modules/perl/nginx.pm
parente548a510c49f6d522ba2429f774a66c6162c675c (diff)
downloadnginx-60472812081386c0f2fda3139aef07a10f095173.tar.gz
nginx-60472812081386c0f2fda3139aef07a10f095173.tar.bz2
rename $r->rflush to $r->flush
Diffstat (limited to '')
-rw-r--r--src/http/modules/perl/nginx.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm
index 25b2994f7..3319c3fc5 100644
--- a/src/http/modules/perl/nginx.pm
+++ b/src/http/modules/perl/nginx.pm
@@ -92,6 +92,13 @@ use constant HTTP_GATEWAY_TIME_OUT => 504;
use constant HTTP_INSUFFICIENT_STORAGE => 507;
+sub rflush {
+ my $r = shift;
+
+ $r->flush;
+}
+
+
1;
__END__