Changeset 5326:dd73c777e8dd in roaraudio for libroar


Ignore:
Timestamp:
12/05/11 19:38:35 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

corrected ROAR_DBG() lions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/socket.c

    r5270 r5326  
    601601  } else { 
    602602   // There is nothing wrong in this case to use dnet_conn() so we do. 
    603    ROAR_DBG("roar_socket_open(*): CALL dnet_conn('%s', '%s', SOCK_STREAM, 0 ,0 ,0 , 0)", host, obj); 
    604603   dnet_node_buf = roar_mm_strdup(host); 
    605604   if ( dnet_node_buf == NULL ) { 
     
    607606    return -1; 
    608607   } 
     608   ROAR_DBG("roar_socket_open(*): CALL dnet_conn('%s', '%s', SOCK_STREAM, 0 ,0 ,0 , 0)", dnet_node_buf, obj); 
    609609   fh = dnet_conn(dnet_node_buf, obj, SOCK_STREAM, 0, 0, 0, 0); 
     610   ROAR_DBG("roar_socket_open(*): RET %i", fh); 
    610611   roar_mm_free(dnet_node_buf); 
    611    ROAR_DBG("roar_socket_open(*): RET %i", fh); 
    612612   *del = ':'; 
    613613   return fh; 
Note: See TracChangeset for help on using the changeset viewer.