Module: sip-router Branch: master Commit: 2664cb9aa8ffd5d26ef6a0841318ccbcdefbf69b URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2664cb9aa8ffd5d26ef6a0841318ccbcdefbf69b
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: Mon Jun 25 10:36:31 2012 +0200 dispatcher(k): allow set id 0 for OPTIONS callback - set id is provided in param pointer address, 0 being equivalent to NULL - reported by Avi Brender --- modules_k/dispatcher/dispatch.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules_k/dispatcher/dispatch.c b/modules_k/dispatcher/dispatch.c index a60401c..7429e97 100644 --- a/modules_k/dispatcher/dispatch.c +++ b/modules_k/dispatcher/dispatch.c @@ -2326,9 +2326,9 @@ static void ds_options_callback( struct cell *t, int type, sip_msg_t *fmsg; int state; - /* The Param does contain the group, in which the failed host + /* The param contains the group, in which the failed host * can be found.*/ - if (!*ps->param) + if (ps->param==NULL) { LM_DBG("No parameter provided, OPTIONS-Request was finished" " with code %d\n", ps->code); _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
