mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
061dfe14d9
(This used to be commit 6f8382432f
)
10 lines
171 B
Perl
Executable File
10 lines
171 B
Perl
Executable File
#!/usr/bin/perl
|
|
use strict;
|
|
|
|
foreach (@ARGV) {
|
|
my $old = $_;
|
|
my $new = $old; $new =~ s/des/des\/hcrypto/g;
|
|
my $dir = $old;
|
|
print "$new: heimdal/lib/des/hcrypto\n";
|
|
}
|