AMI: Remove no longer used parameter from astman_send_listack().

Follow-up issue to -r430435 from reviewboard review.

ASTERISK-24049
Review: https://reviewboard.asterisk.org/r/4315/


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430452 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2015-01-09 18:53:49 +00:00
parent 52a7cdb101
commit ef34a05f21
24 changed files with 43 additions and 51 deletions

View File

@@ -1162,8 +1162,7 @@ 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", "start");
astman_send_listack(s, m, "Following are Events for each object associated with the the Endpoint");
/* the endpoint detail needs to always come first so apply as such */
if (format_ami_endpoint(endpoint, &ami) ||
@@ -1246,8 +1245,7 @@ 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", "start");
astman_send_listack(s, m, "A listing of Endpoints follows, presented as EndpointList events");
ao2_callback(endpoints, OBJ_NODATA, format_ami_endpoints, &ami);