diff options
author | Olivier Guiter <olivier.guiter@linux.intel.com> | 2012-10-22 15:52:53 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-10-24 17:50:14 +0200 |
commit | d70849d9b843793034d89e50638cb7359c34d07c (patch) | |
tree | 44aed4931076ee27fdd7803a7feba406a1abe86c /plugins | |
parent | 3178ceb440a0dbf97288ce4752a3ffa545175d22 (diff) | |
download | neard-d70849d9b843793034d89e50638cb7359c34d07c.tar.gz neard-d70849d9b843793034d89e50638cb7359c34d07c.tar.bz2 neard-d70849d9b843793034d89e50638cb7359c34d07c.zip |
handover: Change carriers type to bitfield
This would allow multiple carriers at the same time (e.g. Bluetooth
and Wifi)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/handover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/handover.c b/plugins/handover.c index 67506b5..10f7be6 100644 --- a/plugins/handover.c +++ b/plugins/handover.c @@ -141,7 +141,7 @@ static int handover_ndef_parse(int client_fd, struct hr_ndef *ndef) * We build the Hs based on it. */ msg = near_ndef_prepare_handover_record("Hs", records->data, - NEAR_CARRIER_BLUETOOTH); + NEAR_CARRIER_UNKNOWN); if (msg == NULL) { err = -EINVAL; goto fail; |