]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
cleanup
authorwessels <>
Tue, 21 Jul 1998 04:40:46 +0000 (04:40 +0000)
committerwessels <>
Tue, 21 Jul 1998 04:40:46 +0000 (04:40 +0000)
src/asn.cc
src/snmp_agent.cc
src/test_cache_digest.cc

index 09d0cce79dba59402e2c9b9bf50be7bb5b53a1a9..90ee2ad1a9388ca9d925605803ce5f91ad0eea5b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: asn.cc,v 1.42 1998/07/20 19:25:29 wessels Exp $
+ * $Id: asn.cc,v 1.43 1998/07/20 22:40:46 wessels Exp $
  *
  * DEBUG: section 53    AS Number handling
  * AUTHOR: Duane Wessels, Kostas Anagnostakis
@@ -34,7 +34,8 @@
 
 /* BEGIN of definitions for radix tree entries */
 
-typedef u_char m_int[1 + sizeof(unsigned int)];                /* int in memory with length */
+/* int in memory with length */
+typedef u_char m_int[1 + sizeof(unsigned int)];        
 #define store_m_int(i, m) \
     (i = htonl(i), m[0] = sizeof(m_int), xmemcpy(m+1, &i, sizeof(unsigned int)))
 #define get_m_int(i, m) \
index fcbcca69c5760128fbe5cd4a05e970b060149ffe..896adb4069af790ccc18c2af852df59a900b310b 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: snmp_agent.cc,v 1.46 1998/07/20 17:20:04 wessels Exp $
+ * $Id: snmp_agent.cc,v 1.47 1998/07/20 22:40:47 wessels Exp $
  *
  * DEBUG: section 49     SNMP Interface
  * AUTHOR: Kostas Anagnostakis
@@ -227,7 +227,7 @@ snmp_sysFn(variable_list * Var, snint * ErrP)
            Answer->type = ASN_INTEGER;
            *(Answer->val.integer) = Var->name[11];
            break;
-#if 0
+#if UNIMPLEMENTED
        case SYS_FD_TYPE:
            Answer->val_len = sizeof(snint);
            Answer->val.integer = xmalloc(Answer->val_len);
index d3e4110485c4cb9cdf6b882ba794d2f5fcad59fe..e69ac8756d18aefd2f6e79a391e20f9cb97cd5e6 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: test_cache_digest.cc,v 1.21 1998/07/20 17:20:17 wessels Exp $
+ * $Id: test_cache_digest.cc,v 1.22 1998/07/20 22:40:47 wessels Exp $
  *
  * AUTHOR: Alex Rousskov
  *
@@ -91,13 +91,6 @@ struct _FileIterator {
 /* globals */
 static time_t cur_time = -1;   /* timestamp of the current log entry */
 
-#if 0
-
-static int cacheIndexScanCleanPrefix(CacheIndex * idx, const char *fname, FILE * file);
-static int cacheIndexScanAccessLog(CacheIndex * idx, const char *fname, FILE * file);
-
-#endif
-
 /* copied from url.c */
 const char *RequestMethodStr[] =
 {