Just noticed a little typo in the patch to add MatrixSSL support to mini_httpd:
http://nthill.free.fr/openwrt/sources/m … .19-3.diff
+ if ( matrixSslReadKeys( &keys, certfile, certfile, NULL, NULL < 0) )
should probably be
+ if ( matrixSslReadKeys( &keys, certfile, certfile, NULL, NULL) < 0 )
I think it's harmless in this case...