[asterisk-commits] trunk - r7887 /trunk/channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Jan 9 09:20:55 CST 2006
Author: oej
Date: Mon Jan 9 09:20:53 2006
New Revision: 7887
URL: http://svn.digium.com/view/asterisk?rev=7887&view=rev
Log:
-Move declaration of callevents variable out of the block of function declarations.
-Do not set it to a default value, it's set later on before loading configuration.
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=7887&r1=7886&r2=7887&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Jan 9 09:20:53 2006
@@ -883,6 +883,7 @@
static time_t externexpire = 0;
static int externrefresh = 10;
static struct ast_ha *localaddr;
+static int callevents; /*!< Whether we send manager events or not */
/* The list of manual NOTIFY types we know how to send */
struct ast_config *notify_types;
@@ -912,7 +913,6 @@
static struct sip_user *build_user(const char *name, struct ast_variable *v, int realtime);
static int sip_do_reload(void);
static int expire_register(void *data);
-static int callevents = 0;
static struct ast_channel *sip_request_call(const char *type, int format, void *data, int *cause);
static int sip_devicestate(void *data);
More information about the asterisk-commits
mailing list