[Lxr-commits] CVS: lxr/lib/LXR/Lang Generic.pm,1.9,1.10
Brought to you by:
ajlittoz
|
From: Malcolm B. <mb...@us...> - 2001-12-06 14:46:44
|
Update of /cvsroot/lxr/lxr/lib/LXR/Lang
In directory usw-pr-cvs1:/tmp/cvs-serv8398
Modified Files:
Generic.pm
Log Message:
Fix error message
Index: Generic.pm
===================================================================
RCS file: /cvsroot/lxr/lxr/lib/LXR/Lang/Generic.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Generic.pm 2001/11/28 12:59:51 1.9
+++ Generic.pm 2001/12/06 14:36:43 1.10
@@ -53,7 +53,7 @@
}
sub read_config {
- open (CONF, $config->genericconf) || die "Can't open $config->genericconf, $!";
+ open (CONF, $config->genericconf) || die "Can't open ".$config->genericconf.", $!";
local($/) = undef;
|