Index: trunk/Ohana/src/opihi/pantasks/controller_status.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/controller_status.c	(revision 41737)
+++ trunk/Ohana/src/opihi/pantasks/controller_status.c	(revision 42389)
@@ -26,7 +26,7 @@
   }
 
-  snprintf (command, 1024, "status");
+  snprintf_nowarn (command, 1024, "status");
   for (i = 1; i < argc; i++) {
-    snprintf (tmpline, 1024, "%s %s", command, argv[i]);
+    snprintf_nowarn (tmpline, 1024, "%s %s", command, argv[i]);
     strcpy (command, tmpline);
   }
Index: trunk/Ohana/src/opihi/pantasks/pantasks_server.c.in
===================================================================
--- trunk/Ohana/src/opihi/pantasks/pantasks_server.c.in	(revision 41737)
+++ trunk/Ohana/src/opihi/pantasks/pantasks_server.c.in	(revision 42389)
@@ -138,4 +138,8 @@
   ConfigFree ();
 
+  // XXX this function is currently called by the thread running ListenClients, but
+  // it should be called by the main above.  have this function trigger the
+  // thread shutdown 
+
   QuitJobsAndTasksThread(); pthread_join (JobsAndTasksThread, NULL);
   QuitControllerThread();   pthread_join (controllerThread, NULL);
