[Libsysio-commit] HEAD: libsysio/tests test_all.pl
Brought to you by:
lward
From: Sonja T. <so...@us...> - 2004-08-30 20:29:02
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19089/tests Modified Files: test_all.pl Log Message: Fixed embarrasing "eq" versus "==" bug Index: test_all.pl =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/test_all.pl,v retrieving revision 1.13 retrieving revision 1.14 diff -u -w -b -B -p -r1.13 -r1.14 --- test_all.pl 29 Jun 2004 18:49:41 -0000 1.13 +++ test_all.pl 30 Aug 2004 20:28:53 -0000 1.14 @@ -40,7 +40,7 @@ my $home = $ENV{"HOME"}; my $auto_mount = $ENV{"SYSIO_AUTOMOUNT"}; my $root_flags = "0"; my $extras = ""; -if ((defined($auto_mount)) && ($auto_mount == "xyes")) { +if ((defined($auto_mount)) && ($auto_mount eq "xyes")) { $root_flags = "2"; # |