Update of /cvsroot/sandweb/sandweb/lib/SandWeb
In directory usw-pr-cvs1:/tmp/cvs-serv3317/lib/SandWeb
Modified Files:
File.pm
Log Message:
ok, fixed the uninitialized value -w was complaining about, filename
and location weren't being filled in in the file object that was
being created to get the file_options. I initialized them with
blank values.
Index: File.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v
retrieving revision 1.34
retrieving revision 1.35
diff -U2 -r1.34 -r1.35
--- File.pm 2002/01/18 20:54:49 1.34
+++ File.pm 2002/01/18 21:14:44 1.35
@@ -19,4 +19,5 @@
my $config = $args{'config_obj'};
my $location = $args{'location'};
+
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)
|