From bccc1171f049c459bd987d009a2f984e5aec4a8e Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Mon, 6 Jun 2005 01:28:54 +0000 Subject: Fix minor OSP compile issue git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5852 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 4 ++-- 1 file 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) -- cgit v1.2.3