diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-05-27 02:24:00 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-05-27 02:24:00 +0000 |
commit | 938b7e7f21dfa65f870345f35ccab1756276c37d (patch) | |
tree | 4a818b1addfc9d8259bc9f3963eb5468f82ed2ae /src/dnscache.h | |
parent | 23c08ca3ee4e5ab5da5854bd1eb2978c7b817342 (diff) |
Fixed the return type for new_dnscache().
Diffstat (limited to 'src/dnscache.h')
-rw-r--r-- | src/dnscache.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dnscache.h b/src/dnscache.h index daeafa4..cd85554 100644 --- a/src/dnscache.h +++ b/src/dnscache.h @@ -1,4 +1,4 @@ -/* $Id: dnscache.h,v 1.3 2000-10-23 21:42:31 rjkaes Exp $ +/* $Id: dnscache.h,v 1.4 2001-05-27 02:24:00 rjkaes Exp $ * * See 'dnscache.c' for a detailed description. * @@ -19,8 +19,9 @@ #define _TINYPROXY_DNSCACHE_H_ #include <arpa/inet.h> +#include "ternary.h" -extern int new_dnscache(void); +extern TERNARY new_dnscache(void); extern int dnscache(struct in_addr *addr, char *domain); #endif |