mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-04 11:56:41 +00:00
Fixed const correctness issues in programs and tests
(cherry picked from commit e0225e4d7f18f4565224f4997af537533d06a80d) Conflicts: programs/ssl/ssl_client2.c programs/ssl/ssl_server2.c programs/test/ssl_test.c programs/x509/cert_app.c
This commit is contained in:
@@ -53,9 +53,9 @@
|
||||
struct options
|
||||
{
|
||||
int mode; /* the mode to run the application in */
|
||||
char *filename; /* filename of the key file */
|
||||
char *password; /* password for the private key */
|
||||
char *password_file; /* password_file for the private key */
|
||||
const char *filename; /* filename of the key file */
|
||||
const char *password; /* password for the private key */
|
||||
const char *password_file; /* password_file for the private key */
|
||||
int debug_level; /* level of debugging */
|
||||
} opt;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user