Hello, When running vss2svn.pl from trunk with Perl 5.8.7, the following warning is printed: Using a hash as a reference is deprecated at /usr/local/share/perl/5.8.7/Vss2Svn/Dumpfile.pm line 798
Of course, this still works, but being that it's deprecated (and somewhat confusing) syntax, it should be changed at some point. Thanks, Erik Index: script/Vss2Svn/Dumpfile.pm =================================================================== --- script/Vss2Svn/Dumpfile.pm (revision 324) +++ script/Vss2Svn/Dumpfile.pm (working copy) @@ -775,7 +775,7 @@ if (defined $self->{auto_props}) { %tmpProps = $self->{auto_props}->get_props ($node->{path}); } - my $eolStyle = %tmpProps->{'svn:eol-style'}; + my $eolStyle = $tmpProps{'svn:eol-style'}; my $isNative = (defined $eolStyle && $eolStyle eq 'native') ? 1 : 0; my $string = $node->get_headers(); _______________________________________________ vss2svn-users mailing list Project homepage: http://www.pumacode.org/projects/vss2svn/ Subscribe/Unsubscribe/Admin: http://lists.pumacode.org/mailman/listinfo/vss2svn-users-lists.pumacode.org Mailing list web interface (with searchable archives): http://dir.gmane.org/gmane.comp.version-control.subversion.vss2svn.user