dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 301683 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

................
  r301683 | twilson | 2011-01-12 15:19:48 -0600 (Wed, 12 Jan 2011) | 15 lines
  
  Merged revisions 301682 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2
  
  ........
    r301682 | twilson | 2011-01-12 15:05:02 -0600 (Wed, 12 Jan 2011) | 9 lines
    
    Don't reject all SUBSCRIBE auth requests
    
    When merging another SUBSCRIBE fix from 1.4, some braces were put in
    the wrong place. This patch fixes that.
    
    (closes issue #18597)
    Reported by: thsgmbh
  ........
................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@301684 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
twilson 2011-01-12 21:24:18 +00:00
parent 128b2784d7
commit 79d86c69fc
1 changed files with 3 additions and 3 deletions

View File

@ -23394,10 +23394,10 @@ static int handle_request_subscribe(struct sip_pvt *p, struct sip_request *req,
ast_log(LOG_NOTICE, "Failed to authenticate device %s for SUBSCRIBE\n", get_header(req, "From"));
transmit_response_reliable(p, "403 Forbidden", req);
}
}
pvt_set_needdestroy(p, "authentication failed");
return 0;
pvt_set_needdestroy(p, "authentication failed");
return 0;
}
}
/* At this point, authpeer cannot be NULL. Remember we hold a reference,