summaryrefslogtreecommitdiff
path: root/lib/dns/config/confcache.c
diff options
context:
space:
mode:
authorInternet Software Consortium, Inc <@isc.org>2007-09-07 14:11:04 -0600
committerLaMont Jones <lamont@debian.org>2007-09-07 14:11:04 -0600
commit4dd5eedee98c3fc2f40a45078bc7006cd5efd7f0 (patch)
tree85b4b951eb54c6a7d489139cdc8f8a0b1fb87eeb /lib/dns/config/confcache.c
parente71238b670ee683d2177c93695465bb6b181c4b8 (diff)
downloadbind9-4dd5eedee98c3fc2f40a45078bc7006cd5efd7f0.tar.gz
9.2.0a1
Diffstat (limited to 'lib/dns/config/confcache.c')
-rw-r--r--lib/dns/config/confcache.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/lib/dns/config/confcache.c b/lib/dns/config/confcache.c
deleted file mode 100644
index 795a2e00..00000000
--- a/lib/dns/config/confcache.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 1999-2001 Internet Software Consortium.
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
- * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
- * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
- * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
- * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
- * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
- * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-/* $Id: confcache.c,v 1.8.4.1 2001/01/09 22:44:36 bwelling Exp $ */
-
-#include <config.h>
-
-#include <dns/confcache.h>
-#include <isc/result.h>
-
-#include "confpvt.h"
-
-isc_result_t
-dns_c_cache_new(isc_mem_t *mem, dns_c_cache_t **cfgcache) {
-
- (void) mem ; (void) cfgcache; /* lint */
-
- /* XXX nothing yet */
-
- return (ISC_R_SUCCESS);
-}
-
-isc_result_t
-dns_c_cache_delete(dns_c_cache_t **cfgcache) {
- (void) cfgcache ; /* lint */
-
- /* XXX nothin yet */
-
- return (ISC_R_SUCCESS);
-}
-
-
-