From 8eda2e301f5c5814c2e79dd5e866b96ad5d90a5c Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Wed, 4 Jul 2007 22:49:34 +0000 Subject: [PATCH] Fix SLAP_NO_SL_MALLOC (ber_malloc_x -> ber_memalloc_x) for ITS#4990. --- servers/slapd/sl_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/sl_malloc.c b/servers/slapd/sl_malloc.c index e60faf2439..4feab16e2b 100644 --- a/servers/slapd/sl_malloc.c +++ b/servers/slapd/sl_malloc.c @@ -266,7 +266,7 @@ slap_sl_malloc( int i, j; #ifdef SLAP_NO_SL_MALLOC - return ber_malloc_x( size, NULL ); + return ber_memalloc_x( size, NULL ); #endif /* ber_set_option calls us like this */ -- 2.39.5