12345678910111213 |
- $OpenBSD: patch-amttool,v 1.1.1.1 2012/06/02 12:09:35 sthen Exp $
- --- amttool.orig Sat Jun 2 12:56:35 2012
- +++ amttool Sat Jun 2 12:58:08 2012
- @@ -8,7 +8,7 @@ my $amt_host = shift;
- my $amt_port = "16992";
- my $amt_proto = 'http';
-
- -if ($amt_host =~ /([^:]+):(\d+)/) {
- +if ($amt_host && $amt_host =~ /([^:]+):(\d+)/) {
- $amt_host = $1;
- $amt_port = $2;
- if ($amt_port == 16993) {
|