You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2015/10/07 12:02:00 UTC

svn commit: r1707220 - /httpd/test/framework/trunk/t/htdocs/modules/h2/hello.pl

Author: ylavic
Date: Wed Oct  7 10:02:00 2015
New Revision: 1707220

URL: http://svn.apache.org/viewvc?rev=1707220&view=rev
Log:
Fix typo (trailing semicolon to <<EOF;).

Modified:
    httpd/test/framework/trunk/t/htdocs/modules/h2/hello.pl

Modified: httpd/test/framework/trunk/t/htdocs/modules/h2/hello.pl
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/htdocs/modules/h2/hello.pl?rev=1707220&r1=1707219&r2=1707220&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/htdocs/modules/h2/hello.pl (original)
+++ httpd/test/framework/trunk/t/htdocs/modules/h2/hello.pl Wed Oct  7 10:02:00 2015
@@ -6,9 +6,9 @@ print "Content-Type: text/html\n";
 print "\n";
 
 my $ssl_protocol = $ENV{'SSL_PROTOCOL'};
-print <<EOF;
+print <<EOF
 <html><body>
 <h2>Hello World!</h2>
 SSL_PROTOCOL="$ssl_protocol"
 </body></html>
-EOF
\ No newline at end of file
+EOF