mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 11:42:27 +00:00
Another typo!
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1152 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
pbx.c
2
pbx.c
@@ -888,7 +888,7 @@ static void pbx_substitute_variables_temp(struct ast_channel *c,const char *var,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!(*ret) && !strcasecmp(var,"LEN(",4)) {
|
if (!(*ret) && !strncasecmp(var,"LEN(",4)) {
|
||||||
int len=strlen(var);
|
int len=strlen(var);
|
||||||
int len_len=4;
|
int len_len=4;
|
||||||
if (len > (len_len+1) && !strncasecmp(var,"LEN(",len_len) && strchr(var+len_len+2,')')) {
|
if (len > (len_len+1) && !strncasecmp(var,"LEN(",len_len) && strchr(var+len_len+2,')')) {
|
||||||
|
Reference in New Issue
Block a user