Hi James, On 01/15/2019 04:43 PM, James Prestwood wrote: > --- > ell/ecc.c | 18 ++++++++++++++++++ > ell/ecc.h | 1 + > ell/ell.sym | 1 + > 3 files changed, 20 insertions(+) > > diff --git a/ell/ecc.c b/ell/ecc.c > index 053e5fb..b2110df 100644 > --- a/ell/ecc.c > +++ b/ell/ecc.c > @@ -90,6 +90,9 @@ static const struct l_ecc_curve *curves[] = { > &p384, > }; > > +static unsigned int supported_groups[L_ARRAY_SIZE(curves) + 1]; > +static bool first = true; > + I moved these into the function definition itself to make things a bit neater. Applied, thanks. Regards, -Denis