On Sat, Jul 07, 2012 at 03:17:30PM +0200, Matthieu Herrb wrote:
> On Sat, Jul 07, 2012 at 12:47:32PM +0200, Peter Hessler wrote:
> > ressurecting an old patch.
> >
> > OK from me, anyone else?
>
> With my sysadmin-deplying-IPv6-at-my-dayjob hat, I'd love to see that
> go in, but I can't test it before next week.
>
> I only had a quick glance at the code (never looked at rtadvd source
> code before), didn't spot anything dubious...
I can't test the diff, but noticed this while looking through it:
> > + while ((tmpsl = strsep(&addr, ","))) {
> > + struct dnssldom *dnsd;
> > + ssize_t len;
> > +
> > + len = strlen(tmpsl);
Should len be declared size_t instead of ssize_t?