aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323
diff options
context:
space:
mode:
authorpcadach <pcadach@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-29 21:09:10 +0000
committerpcadach <pcadach@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-29 21:09:10 +0000
commit1bbcfdbcf9bd1265ac55e97495b6da9708042259 (patch)
tree5c1f90fb4c303c8f670551d83ba07374f3903342 /channels/h323
parent4bc1677da14cfb0471dca160720be544eb750665 (diff)
Compile first, please
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@44043 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/h323')
-rw-r--r--channels/h323/ast_h323.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx
index 114edbbc4..7fb6e0599 100644
--- a/channels/h323/ast_h323.cxx
+++ b/channels/h323/ast_h323.cxx
@@ -766,10 +766,10 @@ void MyH323Connection::SetCallDetails(void *callDetails, const H323SignalPDU &se
cd->type_of_number = 0; /* UNKNOWN */
cd->presentation = 0x03; /* ALLOWED NETWORK NUMBER - Default */
if (setupPDU.GetQ931().HasIE(Q931::UserUserIE)) {
- H225_Setup_UUIE &setup_uuie = setupPDU.m_h323_uu_pdu.m_h323_message_body
- if (setup_uuie.HasOptionalField(e_presentationIndicator))
+ const H225_Setup_UUIE &setup_uuie = setupPDU.m_h323_uu_pdu.m_h323_message_body;
+ if (setup_uuie.HasOptionalField(H225_Setup_UUIE::e_presentationIndicator))
cd->presentation = (cd->presentation & 0x9f) | (((unsigned int)setup_uuie.m_presentationIndicator.GetTag()) << 5);
- if (setup_uuie.HasOptionalField(e_screeningIndicator))
+ if (setup_uuie.HasOptionalField(H225_Setup_UUIE::e_screeningIndicator))
cd->presentation = (cd->presentation & 0xe0) | (((unsigned int)setup_uuie.m_screeningIndicator.GetValue()) & 0x1f);
}
} else {