use Hash::Case::Lower; use Storable;
tie my(%realhash), 'Hash::Case::Lower'; my $hashref = \%realhash; $hashref = retrieve('somefile');
This causes $hashref to be assigned to the anonymous hash returned from retrieve() so that it no longer points to the tied hash. It is then no longer case insensitive. How can I make this work?
-- Andrew Gaffney Network Administrator Skyline Aeronautics, LLC. 636-357-1548
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>