dgaudet 99/11/24 10:11:00
Modified: cgi-bin printenv
Log:
no comment on the rest of this... but this is for debugging, and i don't
want a debugging tool losing information for me for the sake of "looking
good".
Revision Changes Path
1.5 +0 -1 apache-1.3/cgi-bin/printenv
Index: printenv
===================================================================
RCS file: /home/cvs/apache-1.3/cgi-bin/printenv,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- printenv 1999/11/24 13:38:55 1.4
+++ printenv 1999/11/24 18:10:58 1.5
@@ -8,7 +8,6 @@
$val = $ENV{$var};
$val =~ s|\n|\\n|g;
$val =~ s|"|\\"|g;
- $val = substr($val, 0, 100).'[...]' if (length($val) > 100);
print "${var}=\"${val}\"\n";
}