mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Fix error message wording in previous sslinfo commit
This commit is contained in:
		@@ -143,7 +143,7 @@ ASN1_STRING_to_text(ASN1_STRING *str)
 | 
				
			|||||||
	if (membuf == NULL)
 | 
						if (membuf == NULL)
 | 
				
			||||||
		ereport(ERROR,
 | 
							ereport(ERROR,
 | 
				
			||||||
				(errcode(ERRCODE_OUT_OF_MEMORY),
 | 
									(errcode(ERRCODE_OUT_OF_MEMORY),
 | 
				
			||||||
				 errmsg("failed to create OpenSSL BIO structure")));
 | 
									 errmsg("could not create OpenSSL BIO structure")));
 | 
				
			||||||
	(void) BIO_set_close(membuf, BIO_CLOSE);
 | 
						(void) BIO_set_close(membuf, BIO_CLOSE);
 | 
				
			||||||
	ASN1_STRING_print_ex(membuf, str,
 | 
						ASN1_STRING_print_ex(membuf, str,
 | 
				
			||||||
						 ((ASN1_STRFLGS_RFC2253 & ~ASN1_STRFLGS_ESC_MSB)
 | 
											 ((ASN1_STRFLGS_RFC2253 & ~ASN1_STRFLGS_ESC_MSB)
 | 
				
			||||||
@@ -157,7 +157,7 @@ ASN1_STRING_to_text(ASN1_STRING *str)
 | 
				
			|||||||
	if (dp != sp)
 | 
						if (dp != sp)
 | 
				
			||||||
		pfree(dp);
 | 
							pfree(dp);
 | 
				
			||||||
	if (BIO_free(membuf) != 1)
 | 
						if (BIO_free(membuf) != 1)
 | 
				
			||||||
		elog(ERROR, "failed to free OpenSSL BIO structure");
 | 
							elog(ERROR, "could not free OpenSSL BIO structure");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	PG_RETURN_TEXT_P(result);
 | 
						PG_RETURN_TEXT_P(result);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -299,7 +299,7 @@ X509_NAME_to_text(X509_NAME *name)
 | 
				
			|||||||
	if (membuf == NULL)
 | 
						if (membuf == NULL)
 | 
				
			||||||
		ereport(ERROR,
 | 
							ereport(ERROR,
 | 
				
			||||||
				(errcode(ERRCODE_OUT_OF_MEMORY),
 | 
									(errcode(ERRCODE_OUT_OF_MEMORY),
 | 
				
			||||||
				 errmsg("failed to create BIO")));
 | 
									 errmsg("could not create OpenSSL BIO structure")));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	(void) BIO_set_close(membuf, BIO_CLOSE);
 | 
						(void) BIO_set_close(membuf, BIO_CLOSE);
 | 
				
			||||||
	for (i = 0; i < count; i++)
 | 
						for (i = 0; i < count; i++)
 | 
				
			||||||
@@ -309,7 +309,7 @@ X509_NAME_to_text(X509_NAME *name)
 | 
				
			|||||||
		if (nid == NID_undef)
 | 
							if (nid == NID_undef)
 | 
				
			||||||
			ereport(ERROR,
 | 
								ereport(ERROR,
 | 
				
			||||||
					(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
 | 
										(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
 | 
				
			||||||
					 errmsg("failed to get NID for ASN1_OBJECT object")));
 | 
										 errmsg("could not get NID for ASN1_OBJECT object")));
 | 
				
			||||||
		v = X509_NAME_ENTRY_get_data(e);
 | 
							v = X509_NAME_ENTRY_get_data(e);
 | 
				
			||||||
		field_name = OBJ_nid2sn(nid);
 | 
							field_name = OBJ_nid2sn(nid);
 | 
				
			||||||
		if (field_name == NULL)
 | 
							if (field_name == NULL)
 | 
				
			||||||
@@ -317,7 +317,7 @@ X509_NAME_to_text(X509_NAME *name)
 | 
				
			|||||||
		if (field_name == NULL)
 | 
							if (field_name == NULL)
 | 
				
			||||||
			ereport(ERROR,
 | 
								ereport(ERROR,
 | 
				
			||||||
					(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
 | 
										(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
 | 
				
			||||||
					 errmsg("failed to convert NID %d to an ASN1_OBJECT structure", nid)));
 | 
										 errmsg("could not convert NID %d to an ASN1_OBJECT structure", nid)));
 | 
				
			||||||
		BIO_printf(membuf, "/%s=", field_name);
 | 
							BIO_printf(membuf, "/%s=", field_name);
 | 
				
			||||||
		ASN1_STRING_print_ex(membuf, v,
 | 
							ASN1_STRING_print_ex(membuf, v,
 | 
				
			||||||
							 ((ASN1_STRFLGS_RFC2253 & ~ASN1_STRFLGS_ESC_MSB)
 | 
												 ((ASN1_STRFLGS_RFC2253 & ~ASN1_STRFLGS_ESC_MSB)
 | 
				
			||||||
@@ -333,7 +333,7 @@ X509_NAME_to_text(X509_NAME *name)
 | 
				
			|||||||
	if (dp != sp)
 | 
						if (dp != sp)
 | 
				
			||||||
		pfree(dp);
 | 
							pfree(dp);
 | 
				
			||||||
	if (BIO_free(membuf) != 1)
 | 
						if (BIO_free(membuf) != 1)
 | 
				
			||||||
		elog(ERROR, "failed to free OpenSSL BIO structure");
 | 
							elog(ERROR, "could not free OpenSSL BIO structure");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	PG_RETURN_TEXT_P(result);
 | 
						PG_RETURN_TEXT_P(result);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user