]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
pki: Remove superfluous ; when initializing EST client
authorTobias Brunner <tobias@strongswan.org>
Thu, 29 Sep 2022 09:34:50 +0000 (11:34 +0200)
committerTobias Brunner <tobias@strongswan.org>
Thu, 29 Sep 2022 09:34:50 +0000 (11:34 +0200)
src/pki/est/est_tls.c

index f03cac7870dd816c9502d95519faae74c79c6f64..4beae44bf8d5f02ef52d28646089b496f49b04cd 100644 (file)
@@ -405,7 +405,7 @@ est_tls_t *est_tls_create(char *uri, certificate_t *client_cert, char *user_pass
 
        if (user_pass)
        {
-               this->user_pass = chunk_to_base64(chunk_from_str(user_pass), NULL);;
+               this->user_pass = chunk_to_base64(chunk_from_str(user_pass), NULL);
        }
 
        if (!est_tls_init(this, uri, client_cert))