[svn-commits] marquis: branch marquis/pubsub-distributed-events r214058 - /team/marquis/pub...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Aug 25 12:40:50 CDT 2009


Author: marquis
Date: Tue Aug 25 12:40:47 2009
New Revision: 214058

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=214058
Log:
s/configure/configured/

Modified:
    team/marquis/pubsub-distributed-events/res/res_jabber.c

Modified: team/marquis/pubsub-distributed-events/res/res_jabber.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/marquis/pubsub-distributed-events/res/res_jabber.c?view=diff&rev=214058&r1=214057&r2=214058
==============================================================================
--- team/marquis/pubsub-distributed-events/res/res_jabber.c (original)
+++ team/marquis/pubsub-distributed-events/res/res_jabber.c Tue Aug 25 12:40:47 2009
@@ -3272,14 +3272,14 @@
 			if (!strcasecmp(var->value, "component")) {
 				client->component = 1;
 				if (client->distribute_events) {
-					ast_log(LOG_ERROR, "Client cannot be configure to be both a component and to distribute events!  Event distribution will be disabled.\n");
+					ast_log(LOG_ERROR, "Client cannot be configured to be both a component and to distribute events!  Event distribution will be disabled.\n");
 					client->distribute_events = 0;
 				}
 			}
 		} else if (!strcasecmp(var->name, "distribute_events")) {
 			if(ast_true(var->value)) {
 				if (client->component) {
-					ast_log(LOG_ERROR, "Client cannot be configure to be both a component and to distribute events!  Event distribution will be disabled.\n");
+					ast_log(LOG_ERROR, "Client cannot be configured to be both a component and to distribute events!  Event distribution will be disabled.\n");
 				} else {
 					if(ast_test_flag(&globalflags, AJI_PUBSUB)) {
 						ast_log(LOG_ERROR, "Only one connection can be configured for distributed events.\n");




More information about the svn-commits mailing list