aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-27 17:44:24 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-27 17:44:24 +0000
commitb42e437b46746730fa2211e6dc8a781941743cb0 (patch)
tree2c40949d7aff376788bee615fee79d36fb4b2da8
parent8668f1ae303d015930a97cc27f79e3f9cb31b71d (diff)
This should have been trunk only, I guess. oh well ... it's harmless.
Merged revisions 81065 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r81065 | russell | 2007-08-27 11:38:33 -0500 (Mon, 27 Aug 2007) | 1 line explicity define a variable as a boolean ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@81098 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--pbx/pbx_dundi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c
index f012a260d..e165104cc 100644
--- a/pbx/pbx_dundi.c
+++ b/pbx/pbx_dundi.c
@@ -259,7 +259,8 @@ struct dundi_peer {
struct dundi_transaction *qualtrans; /*!< Qualify transaction */
int model; /*!< Pull model */
int pcmodel; /*!< Push/precache model */
- int dynamic; /*!< Are we dynamic? */
+ /*! Dynamic peers register with us */
+ unsigned int dynamic:1;
int lastms; /*!< Last measured latency */
int maxms; /*!< Max permissible latency */
struct timeval qualtx; /*!< Time of transmit */