Changeset 5832

Show
Ignore:
Timestamp:
03/16/10 10:44:30 (3 years ago)
Author:
blogic
Message:

remove debug code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • luci2/ubus/libubus.c

    r5831 r5832  
    409409void ubus_event_send_blob(struct ubus_ctx *ctx, const char *node, void *buf) 
    410410{ 
    411     int i; 
    412411    if(strstr(node, "*")) 
    413412        return; 
    414     for(i = 0; i < 0x20; i++) 
    415         printf("%02X ", ((unsigned char*)buf)[i]); 
    416413    ubus_msg_encode(UBUS_MSG_EVENT, node, 0, buf, blob_pad_len(buf), 0, &bbuf); 
    417414    ubus_send_blob(ctx, bbuf.buf);