X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=bt-host.c;h=2f8f631c2528a866e4fb9bbb5d7876b9889750d2;hb=56b15076805a29673c1a90ea9c3ebef25bfcc912;hp=2092754530a0dd3e7fe47be3e0a863b8e6067ce4;hpb=a97ff30e934c4d673122cf709e8e87f0effbe2f7;p=mirror_qemu.git diff --git a/bt-host.c b/bt-host.c index 2092754530..2f8f631c25 100644 --- a/bt-host.c +++ b/bt-host.c @@ -17,12 +17,12 @@ * with this program; if not, see . */ +#include "qemu/osdep.h" #include "qemu-common.h" -#include "bt/bt.h" +#include "sysemu/bt.h" #include "qemu/main-loop.h" #ifndef _WIN32 -# include # include # include # ifdef CONFIG_BLUEZ @@ -171,7 +171,7 @@ struct HCIInfo *bt_host_hci(const char *id) hci_filter_all_ptypes(&flt); hci_filter_all_events(&flt); - if (setsockopt(fd, SOL_HCI, HCI_FILTER, &flt, sizeof(flt)) < 0) { + if (qemu_setsockopt(fd, SOL_HCI, HCI_FILTER, &flt, sizeof(flt)) < 0) { fprintf(stderr, "qemu: Can't set HCI filter on socket (%i)\n", errno); return 0; }