summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2009-01-25 17:07:40 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2009-01-25 17:07:40 +0000
commitf95ef1bc3da71857aded3948e0941019d6e8ad9b (patch)
tree1aaef8ebba8298b7bd25e3ac290fb4bd498e58af
parentf71edd7db61fb37a845ba3dc3bcc40e846c70704 (diff)
don't set malloc_options to not interfer with /etc/malloc.conf
requested and explained by fgsch@, henning@, otto@
-rw-r--r--usr.bin/aucat/aucat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c
index 8de52227369..ad2b9fb15c4 100644
--- a/usr.bin/aucat/aucat.c
+++ b/usr.bin/aucat/aucat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aucat.c,v 1.53 2009/01/23 17:52:13 ratchov Exp $ */
+/* $OpenBSD: aucat.c,v 1.54 2009/01/25 17:07:39 ratchov Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -320,11 +320,8 @@ main(int argc, char **argv)
unsigned bufsz, mode;
char *devpath, *dbgenv;
const char *errstr;
- extern char *malloc_options;
unsigned volctl;
- malloc_options = "FGJ";
-
dbgenv = getenv("AUCAT_DEBUG");
if (dbgenv) {
debug_level = strtonum(dbgenv, 0, 4, &errstr);