diff --git a/src/www/diag_limiter_info.php b/src/www/diag_limiter_info.php index c35f668fe..9d8bcb43a 100644 --- a/src/www/diag_limiter_info.php +++ b/src/www/diag_limiter_info.php @@ -30,7 +30,7 @@ require_once("guiconfig.inc"); if (isset($_POST['getactivity'])) { - $text = `/sbin/ipfw sched show`; + $text = `/sbin/ipfw pipe show`; if ($text == "") { $text = gettext('We could not find any limiters on this system.'); } @@ -41,6 +41,11 @@ if (isset($_POST['getactivity'])) { echo "\n\nQueues:\n"; echo $text; } + $text = `/sbin/ipfw sched show`; + if ($text != "") { + echo "\n\nSchedulers:\n"; + echo $text; + } exit; }