mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
apps/cmp.c: Defer diagnostic output on server+proxy to be contacted
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12296)
This commit is contained in:
parent
b5b6669fb6
commit
8f7e897995
@ -2095,7 +2095,6 @@ static int setup_client_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
|
||||
|
||||
if (opt_proxy != NULL)
|
||||
(void)BIO_snprintf(proxy_buf, sizeof(proxy_buf), " via %s", opt_proxy);
|
||||
CMP_info2("will contact %s%s", server_buf, proxy_buf);
|
||||
|
||||
if (!transform_opts())
|
||||
goto err;
|
||||
@ -2217,6 +2216,9 @@ static int setup_client_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
|
||||
if (opt_geninfo != NULL && !handle_opt_geninfo(ctx))
|
||||
goto err;
|
||||
|
||||
/* not printing earlier, to minimize confusion in case setup fails before */
|
||||
CMP_info2("will contact %s%s", server_buf, proxy_buf);
|
||||
|
||||
ret = 1;
|
||||
|
||||
err:
|
||||
|
Loading…
Reference in New Issue
Block a user