diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-06-06 15:27:34 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-06-06 15:27:34 +0200 |
commit | ab37ace0cbe02627b7b0839aa575077aba4141ef (patch) | |
tree | c027c402a07bdf147a3ccc3dabfde2f3c59d6ff4 | |
parent | fa03455fdd22a83980bfbe6320db279123aefb35 (diff) | |
download | Dns-ab37ace0cbe02627b7b0839aa575077aba4141ef.zip Dns-ab37ace0cbe02627b7b0839aa575077aba4141ef.tar.gz Dns-ab37ace0cbe02627b7b0839aa575077aba4141ef.tar.bz2 |
Output specifies if a default resolution is used.
-rw-r--r-- | Bin/Server.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Bin/Server.php b/Bin/Server.php index 0a1730c..647a6d0 100644 --- a/Bin/Server.php +++ b/Bin/Server.php @@ -128,8 +128,7 @@ class Server extends \Hoa\Console\Dispatcher\Kit { if('to' !== $inputs[$i + 1]) continue; - $to = $inputs[$i + 2]; - + $to = $inputs[$i + 2]; $redirections[$from] = $to; } @@ -149,7 +148,7 @@ class Server extends \Hoa\Console\Dispatcher\Kit { return $to; } - echo '127.0.0.1.', "\n"; + echo '127.0.0.1 (default).', "\n"; return '127.0.0.1'; }); |