Changeset 5164:fe7f2fdf702b in roaraudio


Ignore:
Timestamp:
10/17/11 00:08:53 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

avoid a warning about numerical IP addresses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/req.c

    r5146 r5164  
    468468 ROAR_DBG("req_on_con_stream(*): CONNECT(type=%i, host='%s', port=%i)", type, host, port); 
    469469 
    470  if ( (fh = roar_socket_open(ROAR_SOCKET_MODE_CONNECT, type, host, port)) == -1 ) 
     470 roar_libroar_nowarn(); 
     471 fh = roar_socket_open(ROAR_SOCKET_MODE_CONNECT, type, host, port); 
     472 roar_libroar_warn(); 
     473 
     474 if ( fh == -1 ) 
    471475  return -1; 
    472476 
Note: See TracChangeset for help on using the changeset viewer.