1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Fix some more depend issues

This commit is contained in:
Manuel Pégourié-Gonnard
2013-09-19 18:09:14 +02:00
parent 387a211fad
commit 4fee79b885
20 changed files with 638 additions and 611 deletions

View File

@ -728,7 +728,7 @@ int cipher_check_tag( cipher_context_t *ctx,
diff |= tag[i] ^ check_tag[i];
if( diff != 0 )
return( POLARSSL_ERR_GCM_AUTH_FAILED );
return( POLARSSL_ERR_CIPHER_AUTH_FAILED );
return( 0 );
}