From 9e84f85ee3b109a61fdee9e3cb008fbfee38cc10 Mon Sep 17 00:00:00 2001 From: "aravind%mozilla.com" Date: Tue, 8 May 2007 00:20:31 +0000 Subject: [PATCH] testing rebuilds git-svn-id: svn://10.0.0.236/trunk@226095 18797224-902f-48f8-a5cc-f745e15eee43 --- CVSROOT/readonlyusers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CVSROOT/readonlyusers.pl b/CVSROOT/readonlyusers.pl index 02fb619b836..5ce97f15dc6 100755 --- a/CVSROOT/readonlyusers.pl +++ b/CVSROOT/readonlyusers.pl @@ -32,7 +32,7 @@ my %read_only_users = ( 'xrbld' => 1 ); -my $username = $ENV{"CVS_USER"} || getlogin || (getpwuid($<))[0] || "nobody"; +my $username = $ENV{'CVS_USER'} || getlogin || (getpwuid($<))[0] || 'nobody'; if (exists $read_only_users{$username}) { print STDERR "The $username account is not permitted to check-in to this CVS repository.\n";