Changeset 176
- Timestamp:
- 07/05/07 14:37:42 (17 months ago)
- Files:
-
- 1 modified
-
trunk/obexftp/bt_discovery.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/obexftp/bt_discovery.c
r171 r176 53 53 if(num_rsp < 0) 54 54 { 55 perror("Inquiry failed.");55 DEBUG(1, "%s: Inquiry failed", __func__); 56 56 return NULL; 57 57 } … … 60 60 if (dd < 0) 61 61 { 62 perror("HCI device open failed");62 DEBUG(1, "%s: HCI device open failed", __func__); 63 63 free(info); 64 64 return NULL; … … 99 99 if(sdp_service_search_attr_req(sess, search, SDP_ATTR_REQ_INDIVIDUAL, attrid, &seq) < 0) 100 100 { 101 perror("SDP service search");101 DEBUG(1, "%s: SDP service search failed", __func__); 102 102 sdp_close(sess); 103 103 return -1; … … 152 152 if(!sess) 153 153 { 154 perror("Failed to connect to SDP server");154 DEBUG(1, "%s: Failed to connect to SDP server", __func__); 155 155 return -1; 156 156 }
