in reply to Re^3: Argument isn't numeric in numeric ge
in thread Argument isn't numeric in numeric ge

ok:
use Data::Dumper; print Dumper $version_on_disk, "disk"; print Dumper $version_dns, "dns";
gives
$VAR1 = '1195874'; $VAR2 = 'disk'; $VAR1 = '1195874'; $VAR2 = 'dns';
Update: with $Data::Dumper::Useqq = 1 ; I see an extra char indeed:
$VAR1 = 1195874; $VAR2 = "disk"; $VAR1 = "\a1195874"; $VAR2 = "dns";
So now I have to figure out why it gets here and how to get rid of it. Thanks! (no votes left today, I'll appoint votes tomorrow)