> >     for (f = fields; f->field; f++)
> >             if (json_streq(map, field, f->field) && nz) {
> > +                   /* Handle all variations of 0 encounted in JSON */
> > +                   if (json_streq(map, val, "0x00") ||
> > +                        json_streq(map, val, "0x0"))
> > +                           return 1;
> 
> how is this related to the patch? also shouldn't it return 0 ?

I removed it now. It avoids some extra umask=0x0 entries, but these
don't hurt.

-Andi

Reply via email to