mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Fixed const-correctness issues
This commit is contained in:
parent
ddba8822d0
commit
fcc172138c
4 changed files with 4 additions and 3 deletions
|
|
@ -36,7 +36,7 @@ int x509_string_to_names( asn1_named_data **head, char *name )
|
|||
int ret = 0;
|
||||
char *s = name, *c = s;
|
||||
char *end = s + strlen( s );
|
||||
char *oid = NULL;
|
||||
const char *oid = NULL;
|
||||
int in_tag = 1;
|
||||
asn1_named_data *cur;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue