diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | fixpaths | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20000420 | ||
2 | - Make fixpaths work with perl4, patch from Andre Lucas | ||
3 | <andre.lucas@dial.pipex.com> | ||
4 | |||
1 | 20000419 | 5 | 20000419 |
2 | - OpenBSD CVS updates | 6 | - OpenBSD CVS updates |
3 | [channels.c] | 7 | [channels.c] |
@@ -22,7 +22,8 @@ while ($_=$ARGV[0], /^-/) { | |||
22 | die ("$usage$0: error in command line arguments.\n"); | 22 | die ("$usage$0: error in command line arguments.\n"); |
23 | } | 23 | } |
24 | } else { | 24 | } else { |
25 | die ("$usage$0: unknown option '-".$ARGV[0][1]."'\n"); | 25 | @cmd = split(//, $ARGV[0]); $opt = $cmd[1]; |
26 | die ("$usage$0: unknown option '-$opt'\n"); | ||
26 | } | 27 | } |
27 | } # while parsing arguments | 28 | } # while parsing arguments |
28 | 29 | ||