]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Let Getopt::Long do the input validation for port.
authorAndrew Ruthven <andrew@etc.gen.nz>
Thu, 29 Nov 2007 19:16:59 +0000 (08:16 +1300)
committerAndrew Ruthven <andrew@cerberus.etc.gen.nz>
Thu, 29 Nov 2007 19:16:59 +0000 (08:16 +1300)
bin/mythtv-status

index cc674fc5987ec834a45d4a2dfc191015771e8b03..cdd7100624be7cedc4353665dad045266f9852a0 100755 (executable)
@@ -38,7 +38,7 @@ GetOptions(
   'd|descripton' => \$description,
   'e|episode'    => \$episode,
   'h|host=s'     => \$host,
-  'p|port=s'     => \$port,
+  'p|port=i'     => \$port,
   'v|version'    => \&print_version,
   'email=s@'     => \@email,
   'email-only-on-conflict' => \$email_only_on_conflict,
@@ -61,9 +61,6 @@ GetOptions(
 pod2usage(verbose => 1)
   if defined $help;
 
-die "Sorry, port isn't a number.\n"
-  if $port !~ /^\d+$/;
-
 # Get the email address into a format we can use.
 @email = split(',', join(',', @email));