]> git.sur5r.net Git - openldap/blobdiff - servers/slurpd/ch_malloc.c
A few changes to the handling of operational attributes.
[openldap] / servers / slurpd / ch_malloc.c
index 54d54c3aaa750d6574bccc5c60d121153facb0f2..5161742751bd8c29a16c438a894ea408e9a08159 100644 (file)
@@ -1,3 +1,8 @@
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 /*
  * Copyright (c) 1996 Regents of the University of Michigan.
  * All rights reserved.
@@ -10,6 +15,8 @@
  * is provided ``as is'' without express or implied warranty.
  */
 
+#define CH_FREE 1
+
 /*
  * ch_malloc.c - malloc() and friends, with check for NULL return.
  */
@@ -24,6 +31,7 @@
 #include "../slapd/slap.h"
 
 
+#ifndef CSRIMALLOC
 
 /*
  * Just like malloc, except we check the returned value and exit
@@ -116,3 +124,4 @@ ch_free(
     return;
 }
 
+#endif