Change the .cgi extension to .notcgi so the stupid http server doesn't try to execute it

This commit is contained in:
qorg11 2020-11-14 22:48:02 +01:00
parent d85e35d0d5
commit 68d9f1e56e
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ if($size > $MAX_SIZE)
my $extension = $filename;
$extension =~ s/.*\.//; # tar.gz sucks with this
$extension = "notcgi" if $extension eq "cgi";
# Get unix time in miliseconds
my $string;
$string = gettimeofday; # perl, what?