diff options
author | Guillaume Rousse <guillomovitch@mandriva.org> | 2010-02-04 19:54:46 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mandriva.org> | 2010-02-04 19:54:46 +0000 |
commit | 6bcf7e6e1fe92548e58755a1a0c580a8ebdac0a1 (patch) | |
tree | 3675e085d762f7310cd8841766b8a6259de1d7c4 /add-syslog | |
parent | 162b766c589b4c2c4dabcd39a9142f0dd0cd6988 (diff) | |
download | rpm-helper-6bcf7e6e1fe92548e58755a1a0c580a8ebdac0a1.tar rpm-helper-6bcf7e6e1fe92548e58755a1a0c580a8ebdac0a1.tar.gz rpm-helper-6bcf7e6e1fe92548e58755a1a0c580a8ebdac0a1.tar.bz2 rpm-helper-6bcf7e6e1fe92548e58755a1a0c580a8ebdac0a1.tar.xz rpm-helper-6bcf7e6e1fe92548e58755a1a0c580a8ebdac0a1.zip |
fix arguments assignement
Diffstat (limited to 'add-syslog')
-rwxr-xr-x | add-syslog | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ sub main { M => 'emerg' ); getopts('s:m:M:', \%opts); - my ($source, $min, $max) = @opts{qw/s f m M/}; + my ($source, $min, $max) = @opts{qw/s m M/}; die <<EOF if @ARGV < 4; usage: $0 [options] <pkg> <nb> <facility> <dest> |