You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2014/09/06 22:42:25 UTC

git commit: mgmt: fix missing EVENT_ACTIVE request parameter

Repository: trafficserver
Updated Branches:
  refs/heads/master 4a1d17818 -> c3ad382fe


mgmt: fix missing EVENT_ACTIVE request parameter


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/c3ad382f
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/c3ad382f
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/c3ad382f

Branch: refs/heads/master
Commit: c3ad382febfb7f6ba37a8fd2950262aa444ce69b
Parents: 4a1d178
Author: James Peach <jp...@apache.org>
Authored: Sat Sep 6 13:42:24 2014 -0700
Committer: James Peach <jp...@apache.org>
Committed: Sat Sep 6 13:42:24 2014 -0700

----------------------------------------------------------------------
 mgmt/api/TSControlMain.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c3ad382f/mgmt/api/TSControlMain.cc
----------------------------------------------------------------------
diff --git a/mgmt/api/TSControlMain.cc b/mgmt/api/TSControlMain.cc
index 69f86fb..ba5ba3f 100644
--- a/mgmt/api/TSControlMain.cc
+++ b/mgmt/api/TSControlMain.cc
@@ -750,7 +750,7 @@ handle_event_active(int fd, void * req, size_t reqlen)
   MgmtMarshallInt err;
   MgmtMarshallInt bval = 0;
 
-  err = recv_mgmt_request(req, reqlen, EVENT_ACTIVE, &optype);
+  err = recv_mgmt_request(req, reqlen, EVENT_ACTIVE, &optype, &name);
   if (err != TS_ERR_OKAY) {
     goto done;
   }