We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44da18a commit b14c331Copy full SHA for b14c331
programs/pkey/key_app_writer.c
@@ -87,10 +87,12 @@
87
USAGE_OUT \
88
"\n"
89
90
-#if !defined(MBEDTLS_PK_WRITE_C) || !defined(MBEDTLS_FS_IO)
+#if !defined(MBEDTLS_PK_PARSE_C) || \
91
+ !defined(MBEDTLS_PK_WRITE_C) || \
92
+ !defined(MBEDTLS_FS_IO)
93
int main( void )
94
{
- mbedtls_printf( "MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO not defined.\n" );
95
+ mbedtls_printf( "MBEDTLS_PK_PARSE_C and/or MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO not defined.\n" );
96
return( 0 );
97
}
98
#else
@@ -433,4 +435,4 @@ int main( int argc, char *argv[] )
433
435
434
436
return( exit_code );
437
-#endif /* MBEDTLS_PK_WRITE_C && MBEDTLS_FS_IO */
438
+#endif /* MBEDTLS_PK_PARSE_C && MBEDTLS_PK_WRITE_C && MBEDTLS_FS_IO */
0 commit comments