aboutsummaryrefslogtreecommitdiffstats
path: root/config/openbgpd
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2013-07-23 13:29:33 -0300
committerRenato Botelho <garga@FreeBSD.org>2013-07-23 13:29:33 -0300
commit4211de072511ca5a1a7cd3929f3812d62c461173 (patch)
tree210f5d43f092777a3393549565966db1891c206b /config/openbgpd
parent1c0456d991c3ccf9114b4cfe862ac09024abbce2 (diff)
downloadpfsense-packages-4211de072511ca5a1a7cd3929f3812d62c461173.tar.gz
pfsense-packages-4211de072511ca5a1a7cd3929f3812d62c461173.tar.bz2
pfsense-packages-4211de072511ca5a1a7cd3929f3812d62c461173.zip
Remove unused functions
Diffstat (limited to 'config/openbgpd')
-rw-r--r--config/openbgpd/openbgpd_status.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/config/openbgpd/openbgpd_status.php b/config/openbgpd/openbgpd_status.php
index 20de85bf..330062e5 100644
--- a/config/openbgpd/openbgpd_status.php
+++ b/config/openbgpd/openbgpd_status.php
@@ -74,11 +74,6 @@ function doCmdT($title, $command) {
echo "</table>\n";
}
-/* Execute a command, giving it a title which is the same as the command. */
-function doCmd($command) {
- doCmdT($command,$command);
-}
-
/* Define a command, with a title, to be executed later. */
function defCmdT($title, $command) {
global $commands;
@@ -86,13 +81,6 @@ function defCmdT($title, $command) {
$commands[] = array($title, $command);
}
-/* Define a command, with a title which is the same as the command,
- * to be executed later.
- */
-function defCmd($command) {
- defCmdT($command,$command);
-}
-
/* List all of the commands as an index. */
function listCmds() {
global $commands;