[Asterisk-code-review] spelling: dialed (asterisk[master])
Josh Soref
asteriskteam at digium.com
Sun Nov 7 00:06:32 CDT 2021
Josh Soref has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/16876 )
Change subject: spelling: dialed
......................................................................
spelling: dialed
Change-Id: Id1bc98818c2718ecd5e081160457b1417916f2ea
---
M addons/chan_ooh323.c
M addons/ooh323c/src/ooUtils.c
M addons/ooh323c/src/ooUtils.h
3 files changed, 5 insertions(+), 5 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/76/16876/1
diff --git a/addons/chan_ooh323.c b/addons/chan_ooh323.c
index c878041..814022c 100644
--- a/addons/chan_ooh323.c
+++ b/addons/chan_ooh323.c
@@ -2055,7 +2055,7 @@
}
ooCallAddAliasDialedDigits(call, p->caller_dialedDigits);
} else if (!ast_strlen_zero(p->callerid_num)) {
- if (ooIsDailedDigit(p->callerid_num)) {
+ if (ooIsDialedDigit(p->callerid_num)) {
if (gH323Debug) {
ast_verb(0, "setting callid number %s\n", p->callerid_num);
}
@@ -2136,7 +2136,7 @@
}
ooCallAddAliasDialedDigits(call, p->caller_dialedDigits);
} else if (!ast_strlen_zero(p->callerid_num)) {
- if (ooIsDailedDigit(p->callerid_num)) {
+ if (ooIsDialedDigit(p->callerid_num)) {
if (gH323Debug) {
ast_verb(0, "setting callid number %s\n", p->callerid_num);
}
@@ -2148,7 +2148,7 @@
if (!ast_strlen_zero(p->exten)) {
- if (ooIsDailedDigit(p->exten)) {
+ if (ooIsDialedDigit(p->exten)) {
ooCallSetCalledPartyNumber(call, p->exten);
ooCallAddRemoteAliasDialedDigits(call, p->exten);
} else {
diff --git a/addons/ooh323c/src/ooUtils.c b/addons/ooh323c/src/ooUtils.c
index c71933c..fb60746 100644
--- a/addons/ooh323c/src/ooUtils.c
+++ b/addons/ooh323c/src/ooUtils.c
@@ -30,7 +30,7 @@
}
-OOBOOL ooIsDailedDigit(const char* str)
+OOBOOL ooIsDialedDigit(const char* str)
{
if(str == NULL || *str =='\0') { return FALSE; }
while(*str != '\0')
diff --git a/addons/ooh323c/src/ooUtils.h b/addons/ooh323c/src/ooUtils.h
index 78aee32..ff9b16d 100644
--- a/addons/ooh323c/src/ooUtils.h
+++ b/addons/ooh323c/src/ooUtils.h
@@ -48,6 +48,6 @@
* @param str String to test
* @return TRUE if string contains all digits; FALSE otherwise
*/
-EXTERN OOBOOL ooIsDailedDigit(const char* str);
+EXTERN OOBOOL ooIsDialedDigit(const char* str);
#endif
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/16876
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: Id1bc98818c2718ecd5e081160457b1417916f2ea
Gerrit-Change-Number: 16876
Gerrit-PatchSet: 1
Gerrit-Owner: Josh Soref <jsoref at gmail.com>
Gerrit-CC: Friendly Automation
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20211107/b870cba7/attachment-0001.html>
More information about the asterisk-code-review
mailing list