From 0b4bc8b98d4fcebef46d89badbd7fe42944e69c8 Mon Sep 17 00:00:00 2001 From: Eric Case Date: Sat, 22 Mar 2014 14:59:13 -0700 Subject: [PATCH] Update variable name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This comment has been identified as either hateful, hurtful or discriminatory as part of a project to #CleanUpGitHub. This pull request was made by a human. For more info, please check EthicalCode’s website at www.ethicalco.de/cleanupgh --- apache2triadcp/count.cgi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apache2triadcp/count.cgi b/apache2triadcp/count.cgi index 523b017..96c6054 100755 --- a/apache2triadcp/count.cgi +++ b/apache2triadcp/count.cgi @@ -4,13 +4,13 @@ print "Content-type: text/html\n\n"; $file = 'count.txt'; -$cunt = 0; +$foobar = 0; open(FILE,"<$file") or die "cant read $file"; -$cunt = ; +$foobar = ; close(FILE); -$cunt += 1; +$foobar += 1; open(FILE,">$file") or die "cant write $file"; -print FILE $cunt; +print FILE $foobar; close(FILE); -print "$cunt"; +print "$foobar"; exit;