mirror of
https://github.com/curl/curl.git
synced 2026-06-15 03:55:37 +03:00
avoid more const
This commit is contained in:
parent
2097ab37b2
commit
96a3902cd7
1 changed files with 3 additions and 2 deletions
|
|
@ -461,8 +461,9 @@ static CURLcode oldap_perform_mechs(struct Curl_easy *data)
|
|||
struct ldapconninfo *li =
|
||||
Curl_conn_meta_get(data->conn, CURL_META_LDAP_CONN);
|
||||
int rc;
|
||||
char *supportedSASLMechanisms[] = {
|
||||
"supportedSASLMechanisms",
|
||||
char name[]="supportedSASLMechanisms";
|
||||
char *supportedSASLMechanisms[2] = {
|
||||
name,
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue