Ed, Wiggins, et al
> > $newH{'TS'} => $TS; # TS is the outer key. <<== line 33
>
> This sets the outer hash key to the string 'TS' and gives it the value of
the time ($TS) from above.
>
I don't think so. It's late I'm beat but
$newH{'TS'} = $TS;
as opposed to
$newH{'TS'} => $TS;
Which generates the warning.HTH -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
