summaryrefslogtreecommitdiff
path: root/combine
diff options
context:
space:
mode:
authorjoeyh <joeyh>2006-06-28 18:04:23 +0000
committerjoeyh <joeyh>2006-06-28 18:04:23 +0000
commitb21b76ed6a5d574890637b97b21517edd2920fae (patch)
treed654efce1f7b552185fb68bdc6dd4426e8de8eb8 /combine
parent876016dc3a12a333c485841c277b7d653b9717d0 (diff)
downloadmoreutils-b21b76ed6a5d574890637b97b21517edd2920fae.tar.gz
* ifdata: Fix bug in argument parsing that could make it segfault.
* combine: Allow operators to be written in any case.
Diffstat (limited to 'combine')
-rwxr-xr-xcombine2
1 files changed, 1 insertions, 1 deletions
diff --git a/combine b/combine
index ef16aaf..6ab3b43 100755
--- a/combine
+++ b/combine
@@ -126,7 +126,7 @@ if (@ARGV != 3) {
}
my $file1=shift;
-my $op=shift;
+my $op=lc shift;
my $file2=shift;
if ($::{"compare_$op"}) {