diff options
author | Daouda Lo <daouda@mandriva.com> | 2004-02-04 11:10:01 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2004-02-04 11:10:01 +0000 |
commit | becdca4a0ac13ae3c0fbe00a0f1c84813b1d0a2a (patch) | |
tree | c9f8392a787025a0031e770e7143d4056b5da621 /perl-install | |
parent | 8c452d55fbab47d84adaeb4453e177e1938dc3ba (diff) | |
download | drakx-becdca4a0ac13ae3c0fbe00a0f1c84813b1d0a2a.tar drakx-becdca4a0ac13ae3c0fbe00a0f1c84813b1d0a2a.tar.gz drakx-becdca4a0ac13ae3c0fbe00a0f1c84813b1d0a2a.tar.bz2 drakx-becdca4a0ac13ae3c0fbe00a0f1c84813b1d0a2a.tar.xz drakx-becdca4a0ac13ae3c0fbe00a0f1c84813b1d0a2a.zip |
- less arguments in ntp_server, $prefix no more passed to function args
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/timezone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm index 69af76e60..6515c041a 100644 --- a/perl-install/timezone.pm +++ b/perl-install/timezone.pm @@ -21,7 +21,7 @@ sub read() { } sub ntp_server { - my $setting = @_ > 1; + my $setting = @_ >= 1; my ($server) = @_; my $f = "$::prefix/etc/ntp.conf"; |