Skip to content

Commit

Permalink
dmq: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesrchance committed Feb 4, 2015
1 parent 4363638 commit 9876a9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/dmq/dmq_funcs.c
Expand Up @@ -408,9 +408,9 @@ int cfg_dmq_t_replicate(struct sip_msg* msg, char* s)
* - ourself
* - any inactive nodes
*/
if(node->local || node->status != DMQ_NODE_ACTIVE) {
LM_DBG("skipping node %.*s\n", STR_FMT(&node->orig_uri));
node = node->next;
if(node->local || node->status != DMQ_NODE_ACTIVE) {
LM_DBG("skipping node %.*s\n", STR_FMT(&node->orig_uri));
node = node->next;
continue;
}
if(tmb.t_replicate(msg, &node->orig_uri) < 0) {
Expand Down

0 comments on commit 9876a9c

Please sign in to comment.