summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-12-13 00:57:28 +0100
committerGuillaume Mazoyer <respawneral@gmail.com>2014-12-13 00:57:28 +0100
commit92f424a4c673f0c5d94ae3948cb520bb5266e4b1 (patch)
tree3886078c882d8d50010f82d223be0ec7791f565b
parent21cb7dd8a0fa4a87481506f08732865f763b94d4 (diff)
Typo fix.
-rw-r--r--routers/cisco.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/cisco.php b/routers/cisco.php
index 20592b6..1bda2ff 100644
--- a/routers/cisco.php
+++ b/routers/cisco.php
@@ -57,7 +57,7 @@ final class Cisco extends Router {
if (match_ipv4($destination)) {
$traceroute = 'traceroute ip '.$fqdn;
} else if (match_ipv6($destination)) {
- $traceroute = 'traceroute ip6 '.$fqdn;
+ $traceroute = 'traceroute ipv6 '.$fqdn;
} else {
throw new Exception('The parameter does not resolve to an IPv4/IPv6 address.');
}