Commit 1340db65 authored by Richard Levitte's avatar Richard Levitte
Browse files

Small error fix.

parent 9da65c32
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -660,9 +660,10 @@ int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx)

	if (verbose)
		{
		s=X509_NAME_oneline(X509_get_subject_name(ctx->current_cert),
				    buf,256);
		if (s != NULL)
			{
			s=X509_NAME_oneline(X509_get_subject_name(ctx->current_cert),buf,256);
			if (ok)
				fprintf(stderr,"depth=%d %s\n",
					ctx->error_depth,buf);