Log Message:
-----------
Backport changes
Tags:
----
rel-2-4-dev
Modified Files:
--------------
pg/lib/WeBWorK:
EquationCache.pm
Revision Data
-------------
Index: EquationCache.pm
===================================================================
RCS file: /webwork/cvs/system/pg/lib/WeBWorK/EquationCache.pm,v
retrieving revision 1.3
retrieving revision 1.3.6.1
diff -Llib/WeBWorK/EquationCache.pm -Llib/WeBWorK/EquationCache.pm -u -r1.3 -r1.3.6.1
--- lib/WeBWorK/EquationCache.pm
+++ lib/WeBWorK/EquationCache.pm
@@ -38,7 +38,7 @@
use warnings;
use Digest::MD5 qw(md5_hex);
use Fcntl qw(:DEFAULT :flock);
-BEGIN { O_RDWR; O_CREAT; LOCK_EX } # get rid of "subroutine redefined" warnings
+BEGIN { my @_junk = (O_RDWR,O_CREAT,LOCK_EX) } # get rid of "subroutine redefined" warnings
=head1 METHODS
|