]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
no need to specifically ask people to mail bind9-bugs about mempool leaks
authorAndreas Gustafsson <source@isc.org>
Tue, 20 Feb 2001 22:02:02 +0000 (22:02 +0000)
committerAndreas Gustafsson <source@isc.org>
Tue, 20 Feb 2001 22:02:02 +0000 (22:02 +0000)
lib/isc/mem.c

index 2587eb01cd148d49aded91942b5429d7462754b4..807f63b97eb2df6730a96bd9fa0a0bdaa399e89e 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mem.c,v 1.75.2.2 2001/02/13 20:43:44 gson Exp $ */
+/* $Id: mem.c,v 1.75.2.3 2001/02/20 22:02:02 gson Exp $ */
 
 #include <config.h>
 
@@ -1404,9 +1404,8 @@ isc_mempool_destroy(isc_mempool_t **mpctxp) {
 #if ISC_MEMPOOL_NAMES
        if (mpctx->allocated > 0)
                UNEXPECTED_ERROR(__FILE__, __LINE__,
-                                "isc_mempool_destroy(): mempool %s leaked "
-                                "memory.  Please report this error to "
-                                "bind9-bugs@isc.org", mpctx->name);
+                                "isc_mempool_destroy(): mempool %s leaked",
+                                mpctx->name);
 #endif
        REQUIRE(mpctx->allocated == 0);