Error: Program returned code (0) and output 'NT_KEY: ...'

Phil Mayers p.mayers at imperial.ac.uk
Fri Jun 13 17:23:31 CEST 2014


On 13/06/14 16:10, Phil Mayers wrote:
> On 13/06/14 16:00, Phil Mayers wrote:
>
>> Looks like 199b27e might be a bit awry; think the sizeof() calls have
>
> Never mind, that's me being C-ignorant.

Nope, I was right; sizeof() on an array argument returns the pointer 
size, not the array size.

i.e. this:

void test(int a[8]) { }

...is actually:

void test(int *a) { }


More information about the Freeradius-Devel mailing list