Fix typo causing compile error with NULL cipher

This commit is contained in:
Manuel Pégourié-Gonnard 2014-07-12 02:14:41 +02:00
parent bb3a7f2b20
commit 86bbc7fc30

View File

@ -1313,7 +1313,7 @@ static int null_setkey( void *ctx, const unsigned char *key,
static void * null_ctx_alloc( void )
{
return( (void *) 1 )
return( (void *) 1 );
}
static void null_ctx_free( void *ctx )