Rolf: db file error meldung vom unix-server?

Beitrag lesen

Morgen liebe leut,
Ich hab da ein problem dass ich leider noch nicht im forum gefunden habe.
Besser gesagt eine fehlermeldung von meinem server.
Im perl script hab ich -w eingeschaltet um mal zu sehen welche fehler
das script von sich gibt.
Der server meinte folgendes zu diesen codes:
----------
$maxusers   =        150;

$maxsize=$maxusers*8*2; #uname+pass average length is 8 chars
unlink($loginlog) if ((stat($loginlog))[7] > $maxsize); #line 66
use Fcntl ':flock';

if (dbmopen(%logins,$loginlog,0666))
            {
            flock(%logins,LOCK_EX); #line 71

der server schrieb dazu:
Unquoted string "logins" may clash with future reserved word at index.cgi line 71.
flock() on unopened filehandle logins at index.cgi line 71.
Unquoted string "logins" may clash with future reserved word at index.cgi line 99.
Use of uninitialized value in numeric gt (>) at index.cgi line 66.
----------

Was bedeuten diese fehler?
Schöne grüsse Rolf