summaryrefslogtreecommitdiff
path: root/routers/bird.php
diff options
context:
space:
mode:
Diffstat (limited to 'routers/bird.php')
-rw-r--r--routers/bird.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/bird.php b/routers/bird.php
index 3556902..b964367 100644
--- a/routers/bird.php
+++ b/routers/bird.php
@@ -31,9 +31,9 @@ final class Bird extends Router {
switch ($command) {
case 'bgp':
- if (match_ipv4($parameters), false) {
+ if (match_ipv4($parameters, false)) {
$commands[] = $birdc.' \'show route for '.$parameters.'\'';
- } else if (match_ipv6($parameters), false) {
+ } else if (match_ipv6($parameters, false)) {
$commands[] = $birdc6.' \'show route for '.$parameters.'\'';
} else {
throw new Exception('The parameter is not an IPv4/IPv6 address.');