- Make fixpaths work with perl4, patch from Andre Lucas

<andre.lucas@dial.pipex.com>
This commit is contained in:
Damien Miller 2000-04-20 07:33:24 +10:00
parent 8bb73be04e
commit 3ef692aa05
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
20000420
- Make fixpaths work with perl4, patch from Andre Lucas
<andre.lucas@dial.pipex.com>
20000419
- OpenBSD CVS updates
[channels.c]

View File

@ -22,7 +22,8 @@ while ($_=$ARGV[0], /^-/) {
die ("$usage$0: error in command line arguments.\n");
}
} else {
die ("$usage$0: unknown option '-".$ARGV[0][1]."'\n");
@cmd = split(//, $ARGV[0]); $opt = $cmd[1];
die ("$usage$0: unknown option '-$opt'\n");
}
} # while parsing arguments