mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
fix assertion firing when relay address still present
This commit is contained in:
parent
a2667eab0b
commit
86303475af
1 changed files with 2 additions and 2 deletions
|
@ -3446,14 +3446,14 @@ logAddr( const CommsCtxt* comms, XWEnv xwe,
|
||||||
stream_catString( stream, buf );
|
stream_catString( stream, buf );
|
||||||
|
|
||||||
switch( typ ) {
|
switch( typ ) {
|
||||||
#ifdef XWFEATURE_RELAY
|
|
||||||
case COMMS_CONN_RELAY:
|
case COMMS_CONN_RELAY:
|
||||||
|
#ifdef XWFEATURE_RELAY
|
||||||
stream_catString( stream, "room: " );
|
stream_catString( stream, "room: " );
|
||||||
stream_catString( stream, addr->u.ip_relay.invite );
|
stream_catString( stream, addr->u.ip_relay.invite );
|
||||||
stream_catString( stream, "; host: " );
|
stream_catString( stream, "; host: " );
|
||||||
stream_catString( stream, addr->u.ip_relay.hostName );
|
stream_catString( stream, addr->u.ip_relay.hostName );
|
||||||
break;
|
|
||||||
#endif
|
#endif
|
||||||
|
break;
|
||||||
case COMMS_CONN_SMS:
|
case COMMS_CONN_SMS:
|
||||||
stream_catString( stream, "phone: " );
|
stream_catString( stream, "phone: " );
|
||||||
stream_catString( stream, addr->u.sms.phone );
|
stream_catString( stream, addr->u.sms.phone );
|
||||||
|
|
Loading…
Reference in a new issue