From: Jim Rees Date: Wed, 15 Mar 2006 19:32:49 +0000 (+0000) Subject: fix-includes-20060315 X-Git-Tag: openafs-devel-1_5_1~72 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=a9102a89f046e578df9e0e165e34c951a10b2c22;p=packages%2Fo%2Fopenafs.git fix-includes-20060315 Now that we include arpa/inet.h, also include its prerequisites, and fix the ordering. --- diff --git a/src/util/afsutil.h b/src/util/afsutil.h index d70c6a2d1..e697403ea 100644 --- a/src/util/afsutil.h +++ b/src/util/afsutil.h @@ -22,15 +22,22 @@ /* logging defines */ +#ifndef AFS_NT40_ENV +#include +#include +#include +#include /* for inet_ntoa() */ +#endif + #include #include + extern int LogLevel; extern int mrafsStyleLogs; #ifndef AFS_NT40_ENV extern int serverLogSyslog; extern int serverLogSyslogFacility; extern char *serverLogSyslogTag; -#include /* for inet_ntoa() */ #endif extern void vFSLog(const char *format, va_list args); extern void SetLogThreadNumProgram(int (*func) () );