Skip to content

Commit

Permalink
Fixed typo in NoSIP plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Dec 6, 2023
1 parent 99a64f2 commit e5ccd8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/janus_nosip.c
Expand Up @@ -731,7 +731,7 @@ int janus_nosip_init(janus_callbacks *callback, const char *config_path) {
}
JANUS_LOG(LOG_VERB, "Binding media address set to [%s]...\n", janus_network_address_is_null(&janus_network_local_ip) ? "any" : local_ip);
if(!sdp_ip) {
char *ip = janus_network_address_is_null(&janus_network_local_ip) ? local_ip : local_ip;
char *ip = janus_network_address_is_null(&janus_network_local_ip) ? local_ip : NULL;
if(ip) {
sdp_ip = g_strdup(ip);
JANUS_LOG(LOG_VERB, "IP to advertise in SDP: %s\n", sdp_ip);
Expand Down

0 comments on commit e5ccd8a

Please sign in to comment.