summaryrefslogtreecommitdiff
path: root/dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'dns.c')
-rw-r--r--dns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dns.c b/dns.c
index ad634f1f7..140ab6042 100644
--- a/dns.c
+++ b/dns.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dns.c,v 1.9 2003/11/21 11:57:03 djm Exp $ */ 1/* $OpenBSD: dns.c,v 1.10 2004/06/21 17:36:31 avsm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2003 Wesley Griffin. All rights reserved. 4 * Copyright (c) 2003 Wesley Griffin. All rights reserved.
@@ -43,7 +43,7 @@
43#include "uuencode.h" 43#include "uuencode.h"
44 44
45extern char *__progname; 45extern char *__progname;
46RCSID("$OpenBSD: dns.c,v 1.9 2003/11/21 11:57:03 djm Exp $"); 46RCSID("$OpenBSD: dns.c,v 1.10 2004/06/21 17:36:31 avsm Exp $");
47 47
48#ifndef LWRES 48#ifndef LWRES
49static const char *errset_text[] = { 49static const char *errset_text[] = {
@@ -56,9 +56,9 @@ static const char *errset_text[] = {
56}; 56};
57 57
58static const char * 58static const char *
59dns_result_totext(unsigned int error) 59dns_result_totext(unsigned int res)
60{ 60{
61 switch (error) { 61 switch (res) {
62 case ERRSET_SUCCESS: 62 case ERRSET_SUCCESS:
63 return errset_text[ERRSET_SUCCESS]; 63 return errset_text[ERRSET_SUCCESS];
64 case ERRSET_NOMEMORY: 64 case ERRSET_NOMEMORY: