On Thu, 2016-05-26 at 11:40 +0200, Santiago Ruano Rincón wrote:
> El 23/05/16 a las 22:28, Andrew Bartlett escribió:
> >
> > On Wed, 2016-05-18 at 15:47 -0400, Antoine Beaupré wrote:
> > >
> > > On 2016-04-29 08:55:43, Santiago Ruano Rincón wrote:
> > > >
> > > > Dear Samba maintainers,
> > > >
Adrian Zaugg writes:
> I would vote for a backported 1.0.x version or rather remove 0.7 than 0.9.
I couldn't find 1.0.x in Debian, so tried version 1.1.5+dfsg.1-1~bpo8+1
from jessie-backports instead.
Unfortunately it needs a newer version of libjs-jquery then what is
available in Wheezy:
Ins
Brian May writes:
> DrawDashPolygon had the following change:
>
> - for (i=1; (i < number_vertices) && (length >= 0.0); i++)
> + for (i=1; (i < (ssize_t) number_vertices) && (length >= 0.0); i++)
Actually just noticed this change is a NOP. Both i and number_vertices
are of type size_t.
> Altern