2018-11-27 07:50:42

by Cinaed Simson

[permalink] [raw]
Subject: bug in mesh/net.c


Line 3317 in net.c reads something like

for(int i=0, ....

which I had change to

int i;
for(i=0,...

in order to get the latest git version of bluez to compile.

-- Cinaed


2018-11-28 17:01:43

by Gix, Brian

[permalink] [raw]
Subject: RE: bug in mesh/net.c

Hi Cinead,

> -----Original Message-----
> [email protected]] On Behalf Of Cinaed Simson
> Sent: Monday, November 26, 2018 11:51 PM
> Subject: bug in mesh/net.c
>
>
> Line 3317 in net.c reads something like
>
> for(int i=0, ....
>
> which I had change to
>
> int i;
> for(i=0,...

Thank you for this report. If you would like your name in the change log, please submit this as a GIT Patch, and I will apply it directly. Otherwise, I will make sure it is fixed in the next set of patches that we push.


> in order to get the latest git version of bluez to compile.
>
> -- Cinaed

2018-11-29 21:51:22

by Cinaed Simson

[permalink] [raw]
Subject: Re: bug in mesh/net.c

On 11/28/2018 09:01 AM, Gix, Brian wrote:
> Hi Cinead,
>
>> -----Original Message-----
>> [email protected]] On Behalf Of Cinaed Simson
>> Sent: Monday, November 26, 2018 11:51 PM
>> Subject: bug in mesh/net.c
>>
>>
>> Line 3317 in net.c reads something like
>>
>> for(int i=0, ....
>>
>> which I had change to
>>
>> int i;
>> for(i=0,...
>
> Thank you for this report. If you would like your name in the change log, please submit this as a GIT Patch, and I will apply it directly. Otherwise, I will make sure it is fixed in the next set of patches that we push.

It would be great if you would do the git diff. Thanks!

-- Cinaed

>
>
>> in order to get the latest git version of bluez to compile.
>>
>> -- Cinaed