summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-06-06 01:28:54 +0000
committerMark Spencer <markster@digium.com>2005-06-06 01:28:54 +0000
commitbccc1171f049c459bd987d009a2f984e5aec4a8e (patch)
treec050eb70daaa99135a4c23227ce78b92b19b19fd
parent8ad230082e49838236f580252daad1003d09d326 (diff)
Fix minor OSP compile issue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5852 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 63a0d2026..e2cd3ac18 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -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)