]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ansiproto.h readjustment
authorwessels <>
Tue, 17 Sep 1996 22:53:53 +0000 (22:53 +0000)
committerwessels <>
Tue, 17 Sep 1996 22:53:53 +0000 (22:53 +0000)
ChangeLog
lib/getfullhostname.c
lib/rfc1738.c
lib/util.c
lib/uudecode.c
src/cachemgr.cc
src/dnsserver.cc
src/squid.h

index 59b4a5594a653a0f707ae2b5a67e5993a49386b9..a2dc08a4ae346399a8def997bb83b3a40dfa1579 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@ Changes to squid-1.1.beta3 ():
 
        - s/()/(void)/
        - Fixed 8k page leak in icmpRecv().
+       - Use strerror() if available instead of sys_errlist[].
+       - Misc ANSI-related cleanup.
 
 Changes to squid-1.1.beta2 (September 16, 1996):
 
index 70a972ca1181184e013f86c30d9d757e5bd1352e..9031f835e6212c3af90f5c5328797b2ea1b24ca0 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: getfullhostname.c,v 1.7 1996/09/17 02:29:46 wessels Exp $
+ * $Id: getfullhostname.c,v 1.8 1996/09/17 16:53:56 wessels Exp $
  *
  * DEBUG: 
  * AUTHOR: Harvest Derived
 #include <netdb.h>
 #endif
 
+#include "ansiproto.h"
 #include "util.h"
 
 /*
index cd38939232feb67f8b8d7558028b169180ffffeb..9574856373da49138ba52999cd677038f2fbc184 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rfc1738.c,v 1.5 1996/09/17 16:32:26 wessels Exp $
+ * $Id: rfc1738.c,v 1.6 1996/09/17 16:53:58 wessels Exp $
  *
  * DEBUG: 
  * AUTHOR: Harvest Derived
 #include <string.h>
 #endif
 
+#include "ansiproto.h"
 #include "util.h"
 #define BIG_BUFSIZ (BUFSIZ * 4)
 
index ee18e8b16acf681b5a7946f66a0d58cff6f3602b..93d7e96269a3ddb30ef619bf27ff3ce26c9fdc9e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: util.c,v 1.17 1996/09/17 16:43:37 wessels Exp $
+ * $Id: util.c,v 1.18 1996/09/17 16:54:00 wessels Exp $
  *
  * DEBUG: 
  * AUTHOR: Harvest Derived
 #include <errno.h>
 #endif
 
-#include "util.h"
 #include "ansiproto.h"
+#include "util.h"
 
 void (*failure_notify) __P((char *)) = NULL;
 static char msg[128];
index 1a79e7aef6fc16748291548a6bb15672c866018d..0a0008c14951de6d37ec3dfcdc8b3b608389af0f 100644 (file)
@@ -1,4 +1,5 @@
 
+#include "ansiproto.h"
 #include "util.h"
 
 extern char **environ;
index ae19892a9a3021b8abf296504509b13aafdb7403..7b0ee0ea3ffd6e9e438e5c64a57bba2c11cf862a 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: cachemgr.cc,v 1.25 1996/09/17 16:39:04 wessels Exp $
+ * $Id: cachemgr.cc,v 1.26 1996/09/17 16:54:02 wessels Exp $
  *
  * DEBUG: Section 0     CGI Cache Manager
  * AUTHOR: Harvest Derived
 #include <sys/select.h>
 #endif
 
-#include "util.h"
 #include "ansiproto.h"
+#include "util.h"
 
 #define MAX_ENTRIES 10000
 
index 19c42b037fefd5c694138b504976fa17b345e176..00c5dfb0d008f702a0ad8116be4d087babffae7b 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: dnsserver.cc,v 1.22 1996/09/14 08:45:50 wessels Exp $
+ * $Id: dnsserver.cc,v 1.23 1996/09/17 16:57:00 wessels Exp $
  *
  * DEBUG: section 0     DNS Resolver
  * AUTHOR: Harvest Derived
 #define INADDR_NONE -1
 #endif
 
+#include "ansiproto.h"
 #include "util.h"
 
 extern int h_errno;
index cd60d9878849d68d4e021cbe9091ffaa8b85c705..f68407be51077fe97e87cf9009b50c644043be38 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: squid.h,v 1.51 1996/09/17 16:39:05 wessels Exp $
+ * $Id: squid.h,v 1.52 1996/09/17 16:54:05 wessels Exp $
  *
  * AUTHOR: Duane Wessels
  *
@@ -213,8 +213,8 @@ typedef unsigned long u_num32;
 #define LOCAL_ARRAY(type,name,size) static type name[size]
 #endif
 
-#include "GNUregex.h"
 #include "ansiproto.h"
+#include "GNUregex.h"
 
 typedef void (*SIH) (int, void *);     /* swap in */
 typedef int (*QS) (const void *, const void *);