make internal command functor match external

The internal command functor was getting passed a
const message::Handler& instead of a std::shared_ptr<message::Handler>
which will not work with an upcoming patch that needs the functor to be
able to modify the Handler object. Also, it is convenient to have the
same signature for both types of handlers.

Tested: run ipmitool to see that behavior does not change.

Change-Id: Ie8660e4d16bd66eccc282aef2594b88c25b847db
Signed-off-by: Vernon Mauery <vernon.mauery@linux.intel.com>
diff --git a/command_table.cpp b/command_table.cpp
index a42d981..6a37f38 100644
--- a/command_table.cpp
+++ b/command_table.cpp
@@ -166,7 +166,7 @@
         return errResponse;
     }
 
-    return functor(commandData, *handler);
+    return functor(commandData, handler);
 }
 
 } // namespace command