diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-05 22:41:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-05 22:41:01 +0000 |
commit | 241669cc79f5f8c5a5090534e34e5bba8e88e7e2 (patch) | |
tree | ca65400b30873aa20d307e6013b96108bd1e0b9b /perl-install | |
parent | d36fd467d1c0d89fa401209165c8381ae455de29 (diff) | |
download | drakx-backup-do-not-use-241669cc79f5f8c5a5090534e34e5bba8e88e7e2.tar drakx-backup-do-not-use-241669cc79f5f8c5a5090534e34e5bba8e88e7e2.tar.gz drakx-backup-do-not-use-241669cc79f5f8c5a5090534e34e5bba8e88e7e2.tar.bz2 drakx-backup-do-not-use-241669cc79f5f8c5a5090534e34e5bba8e88e7e2.tar.xz drakx-backup-do-not-use-241669cc79f5f8c5a5090534e34e5bba8e88e7e2.zip |
(salt): cleanup
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 83ce5d198..2d8556201 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -324,7 +324,7 @@ sub syscall_ { sub salt($) { my ($nb) = @_; - require 'devices.pm'; + require devices; open F, devices::make("random") or die "missing random"; my $s; read F, $s, $nb; local $_ = pack "b8" x $nb, unpack "b6" x $nb, $s; |