summaryrefslogtreecommitdiff
path: root/res/res_pjsip
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2015-01-12 18:09:27 +0000
committerRichard Mudgett <rmudgett@digium.com>2015-01-12 18:09:27 +0000
commitc7ea108e02a03728f4c0eef4506678b81a22159c (patch)
treec024d0473b792401fb6be54046d1ae6049e908d8 /res/res_pjsip
parent9065488ddd308ef4a3b46ad2da0a993e2e18c370 (diff)
Revert -r430452 It needs to be redone for the next major AMI version change instead.
ASTERISK-24049 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430509 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip')
-rw-r--r--res/res_pjsip/pjsip_configuration.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/res/res_pjsip/pjsip_configuration.c b/res/res_pjsip/pjsip_configuration.c
index fb554fd89..7dad58c15 100644
--- a/res/res_pjsip/pjsip_configuration.c
+++ b/res/res_pjsip/pjsip_configuration.c
@@ -1162,7 +1162,8 @@ static int ami_show_endpoint(struct mansession *s, const struct message *m)
return -1;
}
- astman_send_listack(s, m, "Following are Events for each object associated with the the Endpoint");
+ astman_send_listack(s, m, "Following are Events for each object associated with the the Endpoint",
+ "start");
/* the endpoint detail needs to always come first so apply as such */
if (format_ami_endpoint(endpoint, &ami) ||
@@ -1245,7 +1246,8 @@ static int ami_show_endpoints(struct mansession *s, const struct message *m)
return 0;
}
- astman_send_listack(s, m, "A listing of Endpoints follows, presented as EndpointList events");
+ astman_send_listack(s, m, "A listing of Endpoints follows, presented as EndpointList events",
+ "start");
ao2_callback(endpoints, OBJ_NODATA, format_ami_endpoints, &ami);