> That's what I get for trying to be clever with the Perl code. This is
> not broken just on Perl 5.6.0 and 5.6.1, but won't work anywhere at all.
> I had intended for that , to be a . but that won't work either. And the
> new version is, I suppose, more readable anyways.
I was only a little bit lazy. No thought about readability.
Hm, thinking about a second time it seems, that you wanted to use the
following:
@chars = ('a'..'z','A'..'Z','0'..'9','.');
$salt = join '', map {$char[rand(@chars)]} (0..1);
This should work everywhere. And it looks nicer for me, but but maybe not
for a Perl beginner. And I would bet, this is more slowly.
> I'm a little confused by the rest of the diff, though, which a dozen
> other lines being replaced with themselves. What's up with that?
This is because my editor changes tabs to spaces and truncates trailing
spaces. So there are non visible changes.
Kess
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]