remove references to Storage object

pull/1903/head
Isaac Connor 2017-06-02 12:32:02 -04:00
parent b6b4738b9f
commit 8b91403c25
1 changed files with 2 additions and 2 deletions

View File

@ -185,11 +185,11 @@ MAIN: while( $loop ) {
Debug( "Checking day dir $day_dir" );
( $day_dir ) = ( $day_dir =~ /^(.*)$/ ); # De-taint
if ( ! chdir( $day_dir ) ) {
Error( "Can't chdir to '$$Storage{Path}/$day_dir': $!" );
Error( "Can't chdir to '$day_dir': $!" );
next;
}
if ( ! opendir( DIR, '.' ) ) {
Error( "Can't open directory '$$Storage{Path}/$day_dir': $!" );
Error( "Can't open directory '$day_dir': $!" );
next;
}