mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-07 10:28:32 +00:00
Fix minor OSP compile issue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5852 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1671,7 +1671,7 @@ static int sip_call(struct ast_channel *ast, char *dest, int timeout)
|
||||
|
||||
|
||||
#ifdef OSP_SUPPORT
|
||||
else if (!osptoken && !strcasecmp(ast_var_name(current), "OSPTOKEN")) {
|
||||
else if (!options.osptoken && !strcasecmp(ast_var_name(current), "OSPTOKEN")) {
|
||||
options.osptoken = ast_var_value(current);
|
||||
} else if (!osphandle && !strcasecmp(ast_var_name(current), "OSPHANDLE")) {
|
||||
osphandle = ast_var_value(current);
|
||||
@@ -5351,7 +5351,7 @@ static int check_auth(struct sip_pvt *p, struct sip_request *req, char *randdata
|
||||
ast_log(LOG_DEBUG, "Checking OSP Authentication!\n");
|
||||
osptoken = get_header(req, "P-OSP-Auth-Token");
|
||||
/* Check for token existence */
|
||||
if (!strlen(osptoken))
|
||||
if (ast_strlen_zero(osptoken))
|
||||
return -1;
|
||||
/* Validate token */
|
||||
if (ast_osp_validate(NULL, osptoken, &p->osphandle, &osptimelimit, p->cid_num, p->sa.sin_addr, p->exten) < 1)
|
||||
|
||||
Reference in New Issue
Block a user