Remove use of deprecated defined(@foo)

https://sourceforge.net/tracker/?func=detail&atid=117457&aid=3138980&group_id=17457
This commit is contained in:
Jamie Cameron
2010-12-17 11:37:04 -08:00
parent 3cca4848b1
commit 8926759d15
42 changed files with 1492 additions and 72 deletions

View File

@ -23,7 +23,7 @@ return &find_textfile($config{'access_file'}, &access_dbm($_[0]));
# list_access(textfile)
sub list_access
{
if (!defined(@list_access_cache)) {
if (!length(@list_access_cache)) {
@list_access_cache = ( );
local $lnum = 0;
open(ACC, $_[0]);