Commit 0b53fe1c authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix s_client so that it builds on Windows

parent bcc1f3e2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2360,9 +2360,11 @@ int s_client_main(int argc, char **argv)
                if (proxypass != NULL)
                    l += strlen(proxypass);
                proxyauth = app_malloc(l + 2, "Proxy auth string");
                snprintf(proxyauth, l + 2, "%s:%s", proxyuser, (proxypass != NULL) ? proxypass : "");
                BIO_snprintf(proxyauth, l + 2, "%s:%s", proxyuser,
                             (proxypass != NULL) ? proxypass : "");
                proxyauthenc = base64encode(proxyauth, strlen(proxyauth));
                BIO_printf(fbio, "Proxy-Authorization: Basic %s\r\n", proxyauthenc); 
                BIO_printf(fbio, "Proxy-Authorization: Basic %s\r\n",
                           proxyauthenc);
                OPENSSL_clear_free(proxyauth, strlen(proxyauth));
                OPENSSL_clear_free(proxyauthenc, strlen(proxyauthenc));
            }