Changeset 216
- Timestamp:
- 07/14/08 13:50:05 (4 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
apps/obexftpd.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r209 r216 1 ObexFTP 0.23 (unreleased) 2 ---------------------------------- 3 4 * removing bdaddr_t reference from obexftpd.c 5 6 1 7 ObexFTP 0.22 (released 2008-06-15) 2 8 ---------------------------------- -
trunk/apps/obexftpd.c
r194 r216 41 41 #ifdef _WIN32 42 42 #include <winsock2.h> 43 #ifdef HAVE_BLUETOOTH44 #include <ws2bth.h>45 #define bdaddr_t BTH_ADDR46 #endif47 43 #define S_IRGRP 0 48 44 #define S_IROTH 0 … … 78 74 79 75 80 #ifdef HAVE_BLUETOOTH81 static bdaddr_t *bt_src = NULL;82 #endif83 76 static char *device = NULL; 84 77 static int channel = 10; /* OBEX_PUSH_HANDLE */ … … 889 882 #ifdef HAVE_BLUETOOTH 890 883 case OBEX_TRANS_BLUETOOTH: 891 if (0 > BtOBEX_ServerRegister(handle, bt_src, channel)) {884 if (0 > BtOBEX_ServerRegister(handle, /*bdaddr_t *bt_src*/NULL, channel)) { 892 885 perror("failed to register bluetooth server"); 893 886 exit(-1);
