summaryrefslogtreecommitdiff
path: root/minires
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-02-02 08:21:08 +0000
committerTed Lemon <source@isc.org>2000-02-02 08:21:08 +0000
commitd970ea7d436a48cffa33c6676abc8cad37d85766 (patch)
tree66ffde6fb3581610e10d30a48412c62809c7be9c /minires
parent3a6b1f5822e393f2d1ca86b6ebe6caf20e141870 (diff)
downloadisc-dhcp-d970ea7d436a48cffa33c6676abc8cad37d85766.tar.gz
Get rid of dprintf.
Diffstat (limited to 'minires')
-rw-r--r--minires/res_findzonecut.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/minires/res_findzonecut.c b/minires/res_findzonecut.c
index f115f725..61ef488c 100644
--- a/minires/res_findzonecut.c
+++ b/minires/res_findzonecut.c
@@ -1,5 +1,5 @@
#if !defined(lint) && !defined(SABER)
-static const char rcsid[] = "$Id: res_findzonecut.c,v 1.1 2000/02/02 07:28:15 mellon Exp $";
+static const char rcsid[] = "$Id: res_findzonecut.c,v 1.2 2000/02/02 08:21:08 mellon Exp $";
#endif /* not lint */
/*
@@ -75,7 +75,6 @@ static void free_nsrr(rrset_ns *, rr_ns *);
static rr_ns * find_ns(rrset_ns *, const char *);
static int do_query(res_state, const char *, ns_class, ns_type,
u_char *, ns_msg *);
-static void dprintf(const char *, ...);
/* Public. */
@@ -580,14 +579,3 @@ do_query(res_state statp, const char *dname, ns_class class, ns_type qtype,
}
return (n);
}
-
-static void
-dprintf(const char *fmt, ...) {
- va_list ap;
-
- va_start(ap, fmt);
- fputs(";; res_findzonecut: ", stderr);
- vfprintf(stderr, fmt, ap);
- fputc('\n', stderr);
- va_end(ap);
-}