From e9871cc76550575415977c37a9c971726c86203f Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 10 Oct 2000 22:00:12 +0000 Subject: [PATCH] __func__ doesn't seem to exist. --- lib/dns/zone.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 11160e6fba..269c8b33d7 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: zone.c,v 1.228 2000/10/06 18:58:22 bwelling Exp $ */ +/* $Id: zone.c,v 1.229 2000/10/10 22:00:12 bwelling Exp $ */ #include @@ -5372,6 +5372,7 @@ zone_saveunique(dns_zone_t *zone, const char *path, const char *templat) { char *buf; int buflen; isc_result_t result; + const char me[] = "zone_saveunique"; buflen = strlen(path) + strlen(templat) + 2; @@ -5387,7 +5388,7 @@ zone_saveunique(dns_zone_t *zone, const char *path, const char *templat) { if (result != ISC_R_SUCCESS) goto cleanup; - zone_log(zone, __func__, ISC_LOG_INFO, "saved \"%s\" as \"%s\"", + zone_log(zone, me, ISC_LOG_INFO, "saved \"%s\" as \"%s\"", path, templat); cleanup: