~cyphermox/bluez/5.23

« back to all changes in this revision

Viewing changes to input/manager.c

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2012-01-24 05:35:09 UTC
  • mfrom: (1.5.11) (7.1.6 experimental)
  • Revision ID: package-import@ubuntu.com-20120124053509-uwpwqi783lz08wm3
Tags: 4.98-1
* New upstream release.
* Update debian/bluetooth-dbus.conf.
* Update debian/control.
  Add Multi-Arch: foreign to bluez.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
                return -1;
70
70
 
71
71
        adapter_get_address(adapter, &src);
72
 
        device_get_address(device, &dst);
 
72
        device_get_address(device, &dst, NULL);
73
73
 
74
74
        return input_device_register(connection, device, path, &src, &dst,
75
75
                                HID_UUID, rec->handle, idle_timeout * 60);
112
112
        }
113
113
 
114
114
        adapter_get_address(adapter, &src);
115
 
        device_get_address(device, &dst);
 
115
        device_get_address(device, &dst, NULL);
116
116
 
117
117
        return fake_input_register(connection, device, path, &src, &dst,
118
118
                                HSP_HS_UUID, ch);