Index: trunk/Ohana/src/opihi/pantasks/controller.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/controller.c	(revision 4573)
+++ trunk/Ohana/src/opihi/pantasks/controller.c	(revision 4689)
@@ -2,4 +2,5 @@
 
 int controller_host    PROTO((int, char **));
+int controller_exit    PROTO((int, char **));
 int controller_status  PROTO((int, char **));
 int controller_check   PROTO((int, char **));
@@ -7,4 +8,5 @@
 
 static Command controller_cmds[] = {
+  {"exit",   controller_exit,   "shutdown controller"},
   {"host",   controller_host,   "define host for controller"},
   {"check",  controller_check,  "check controller host/job"},
@@ -16,5 +18,5 @@
 
   int status;
-  Function *func;
+  CommandF *func;
 
   if (argc < 2) {
@@ -33,5 +35,5 @@
 }
 
-Function *FindControllerCommand (char *cmd) {
+CommandF *FindControllerCommand (char *cmd) {
 
   int i, N;
