Include fake-addrinfo.h before krb5.h to get proper structure declarations
authorEzra Peisach <epeisach@mit.edu>
Mon, 22 Jan 2007 14:32:15 +0000 (14:32 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 22 Jan 2007 14:32:15 +0000 (14:32 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19103 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/os/t_locate_kdc.c

index 165366f5be82374d1ec44f74443e3cd9bd85f611..20e07af6667c74353146abe8a8906bebe62d3929 100644 (file)
@@ -5,6 +5,7 @@
 #include <com_err.h>
 
 #define TEST
+#include "fake-addrinfo.h"
 #include "dnsglue.c"
 #include "dnssrv.c"
 #include "locate_kdc.c"
@@ -19,13 +20,13 @@ const char *prog;
 
 struct addrlist al;
 
-void kfatal (krb5_error_code err)
+static void kfatal (krb5_error_code err)
 {
     com_err (prog, err, "- exiting");
     exit (1);
 }
 
-const char *stypename (int stype)
+static const char *stypename (int stype)
 {
     static char buf[20];
     switch (stype) {
@@ -41,7 +42,7 @@ const char *stypename (int stype)
     }
 }
 
-void print_addrs (void)
+static void print_addrs (void)
 {
     int i;