From a55d110f8eccde182ce8932016d806ec9b97b866 Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Thu, 11 Mar 2021 13:37:12 -0800 Subject: pinyweb: delay STDERR redirect until we're properly ready for it --- pinyweb/cgi-bin/auth/newpass.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pinyweb/cgi-bin/auth/newpass.cgi') diff --git a/pinyweb/cgi-bin/auth/newpass.cgi b/pinyweb/cgi-bin/auth/newpass.cgi index b367558..4f4a636 100755 --- a/pinyweb/cgi-bin/auth/newpass.cgi +++ b/pinyweb/cgi-bin/auth/newpass.cgi @@ -1,8 +1,6 @@ #!/usr/bin/perl $| = 1; -open(STDERR, ">&STDOUT"); - use warnings; use CGI; @@ -13,6 +11,8 @@ $q = CGI->new; print( "Content-type: text/plain\n\n"); +open(STDERR, ">&STDOUT"); + if( defined( $q->param('p') ) ) { my @saltchars = -- cgit v1.2.3