[asterisk-commits] seanbright: trunk r316213 - in /trunk: ./ main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue May 3 13:23:14 CDT 2011
Author: seanbright
Date: Tue May 3 13:23:03 2011
New Revision: 316213
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=316213
Log:
Merged revisions 316206 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r316206 | seanbright | 2011-05-03 14:17:36 -0400 (Tue, 03 May 2011) | 8 lines
If we aren't interested in events, don't generate the FullyBooted event on AMI login.
(closes issue #19089)
Reported by: bklang
Patches:
issue19089-1.8-r316204.patch uploaded by seanbright (license 71)
Tested by: seanbright
........
Modified:
trunk/ (props changed)
trunk/main/manager.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/main/manager.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/manager.c?view=diff&rev=316213&r1=316212&r2=316213
==============================================================================
--- trunk/main/manager.c (original)
+++ trunk/main/manager.c Tue May 3 13:23:03 2011
@@ -2938,7 +2938,8 @@
ast_verb(2, "%sManager '%s' logged on from %s\n", (s->session->managerid ? "HTTP " : ""), s->session->username, ast_inet_ntoa(s->session->sin.sin_addr));
}
astman_send_ack(s, m, "Authentication accepted");
- if (ast_test_flag(&ast_options, AST_OPT_FLAG_FULLY_BOOTED)) {
+ if ((s->session->send_events & EVENT_FLAG_SYSTEM)
+ && ast_test_flag(&ast_options, AST_OPT_FLAG_FULLY_BOOTED)) {
struct ast_str *auth = ast_str_alloca(80);
const char *cat_str = authority_to_str(EVENT_FLAG_SYSTEM, &auth);
astman_append(s, "Event: FullyBooted\r\n"
More information about the asterisk-commits
mailing list