From 9fab5fb01ddbd59e5aa97edb223fd1e132231682 Mon Sep 17 00:00:00 2001 From: tedu <> Date: Wed, 6 Jan 2016 17:57:22 +0000 Subject: Long ago, malloc internally had two kinds of failures, warnings and errors. The 'A' option elevated warnings to errors, and has been the default for some time. Then warnings were effectively eliminated in favor of everything being an error, but then the 'a' flag turned real errors into warnings! Remove the 'a' option entirely. You shouldn't have used it anyway. ok tb tdeval --- src/lib/libc/stdlib/malloc.3 | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/lib/libc/stdlib/malloc.3') diff --git a/src/lib/libc/stdlib/malloc.3 b/src/lib/libc/stdlib/malloc.3 index 27645b5a80..6cb6011ae4 100644 --- a/src/lib/libc/stdlib/malloc.3 +++ b/src/lib/libc/stdlib/malloc.3 @@ -30,9 +30,9 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: malloc.3,v 1.91 2015/09/14 13:08:01 schwarze Exp $ +.\" $OpenBSD: malloc.3,v 1.92 2016/01/06 17:57:22 tedu Exp $ .\" -.Dd $Mdocdate: September 14 2015 $ +.Dd $Mdocdate: January 6 2016 $ .Dt MALLOC 3 .Os .Sh NAME @@ -345,10 +345,7 @@ or detect an error condition, a message will be printed to file descriptor 2 (not using stdio). -Errors will result in the process being aborted, -unless the -.Cm a -option has been specified. +Errors will result in the process being aborted. .Pp Here is a brief description of the error messages and what they mean: .Bl -tag -width Ds -- cgit v1.2.3-55-g6feb