mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 05:46:41 +01:00
Fix typo causing compile error with NULL cipher
This commit is contained in:
parent
bb3a7f2b20
commit
86bbc7fc30
1 changed files with 1 additions and 1 deletions
|
|
@ -1313,7 +1313,7 @@ static int null_setkey( void *ctx, const unsigned char *key,
|
||||||
|
|
||||||
static void * null_ctx_alloc( void )
|
static void * null_ctx_alloc( void )
|
||||||
{
|
{
|
||||||
return( (void *) 1 )
|
return( (void *) 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
static void null_ctx_free( void *ctx )
|
static void null_ctx_free( void *ctx )
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue