* fake-addrinfo.h (gaiptr, faiptr, gniptr): Delete duplicate declarations
authorKen Raeburn <raeburn@mit.edu>
Tue, 3 Sep 2002 22:10:47 +0000 (22:10 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 3 Sep 2002 22:10:47 +0000 (22:10 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14823 dc483132-0cff-0310-8789-dd5450dbe970

src/include/ChangeLog
src/include/fake-addrinfo.h

index d11197a7b5cefa3e4ee2714eeb1210da47e44300..7b7b6e75ba4e03a9f8be69e12c69c5d282fc3a40 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-03  Ken Raeburn  <raeburn@mit.edu>
+
+       * fake-addrinfo.h (gaiptr, faiptr, gniptr): Delete duplicate
+       declarations.
+
 2002-09-03  Ezra Peisach  <epeisach@bu.edu>
 
        * configure.in: Use AH_TEMPLATE to put undefined definition of
index 8d80b5b32984cbd9c9bf58da36e4c2cc86e47daa..30c73005bcf8a7a4eaf79c076899518acdd62881 100644 (file)
@@ -740,20 +740,6 @@ int getnameinfo (const struct sockaddr *sa, socklen_t len,
 #endif /* NEED_FAKE_GETADDRINFO */
 
 
-#if defined (WRAP_GETADDRINFO) || defined (WRAP_GETNAMEINFO)
-/* These variables will contain pointers to the system versions.  They
-   have to be initialized at the end, because the way we initialize
-   them (for UNIX) is #undef and a reference to the C library symbol
-   name.  */
-static int (*const gaiptr) (const char *, const char *,
-                           const struct addrinfo *,
-                           struct addrinfo **);
-static void (*const faiptr) (struct addrinfo *);
-#ifdef WRAP_GETNAMEINFO
-static int (*const gniptr) (const struct sockaddr *, socklen_t,
-                           char *, socklen_t, char *, socklen_t, int);
-#endif
-
 #ifdef WRAP_GETADDRINFO
 
 static inline
@@ -910,8 +896,6 @@ int getnameinfo (const struct sockaddr *sa, socklen_t len,
 }
 #endif /* WRAP_GETNAMEINFO */
 
-#endif /* WRAP_GETADDRINFO || WRAP_GETNAMEINFO */
-
 #if defined(KRB5_USE_INET6) && defined(NEED_INSIXADDR_ANY) 
 /* If compiling with IPv6 support and C library does not define in6addr_any */
 static const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;