aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-12 17:09:55 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-12 17:09:55 +0000
commit84e274b4bfb91bf2bac6cc85af58a3ff0dbfe594 (patch)
tree5b4a52d3eecb28127cdd8bacae8814eef93a4ac8 /channels
parent10b34f8628cdc198b3164ad8a96a43b343f1d06e (diff)
Merged revisions 175127 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r175127 | dvossel | 2009-02-12 11:07:17 -0600 (Thu, 12 Feb 2009) | 4 lines Setting key rotation to be off by default Key rotation breaks compatibility between (trunk/1.6.1) and (1.2/1.4/1.6.0). As a follow up to this, I am investigating possible ways to allow key rotation to be on by default and not affect the other branches, but for now it must be turned off. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@175130 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_iax2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 16b9104d5..69d4fd910 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -11122,7 +11122,7 @@ static int set_config(char *config_file, int reload)
/* Reset Global Flags */
memset(&globalflags, 0, sizeof(globalflags));
ast_set_flag(&globalflags, IAX_RTUPDATE);
-
+ ast_set_flag(&globalflags, IAX_NOKEYROTATE); /* turn off key rotate by default since it breaks backwards compatibility at the moment. */
#ifdef SO_NO_CHECK
nochecksums = 0;
#endif