diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-12-27 11:09:01 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-12-27 11:31:55 +0000 |
commit | 151ae594362460bb4391585a5d408b3b8e3a164d (patch) | |
tree | 79971cd65a18403844bfec5f7fc2d56b4330f3e3 /tests/runtests.pl | |
parent | bde08d216ca08fc185af2f31e57ebdb5c36f4497 (diff) |
code/docs: Use correct case for IPv4 and IPv6
For consistency, as we seem to have a bit of a mixed bag, changed all
instances of ipv4 and ipv6 in comments and documentations to use the
correct case.
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index a2cc5153a..846687cb3 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2529,12 +2529,12 @@ sub checksystem { } if($has_ipv6) { - # client has ipv6 support + # client has IPv6 support # check if the HTTP server has it! my @sws = `server/sws --version`; if($sws[0] =~ /IPv6/) { - # HTTP server has ipv6 support! + # HTTP server has IPv6 support! $http_ipv6 = 1; $gopher_ipv6 = 1; } @@ -2542,7 +2542,7 @@ sub checksystem { # check if the FTP server has it! @sws = `server/sockfilt --version`; if($sws[0] =~ /IPv6/) { - # FTP server has ipv6 support! + # FTP server has IPv6 support! $ftp_ipv6 = 1; } } |