Skip to content

Commit

Permalink
rr: fixed warning about unused label in ki_record_route_reset_one()
Browse files Browse the repository at this point in the history
(cherry picked from commit c65e092)
  • Loading branch information
miconda committed Jan 8, 2020
1 parent b0888cf commit cfba21f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/rr/rr_mod.c
Expand Up @@ -330,10 +330,10 @@ static int ki_record_route_preset_one(sip_msg_t *msg, str *addr1)
return -1;
}

if ( record_route_preset( msg, addr1)<0 )
if ( record_route_preset(msg, addr1)<0 ) {
return -1;
}

done:
msg->msg_flags |= FL_RR_ADDED;
return 1;

Expand Down

0 comments on commit cfba21f

Please sign in to comment.