]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
OLD_CODE
authorwessels <>
Fri, 6 Dec 1996 00:36:12 +0000 (00:36 +0000)
committerwessels <>
Fri, 6 Dec 1996 00:36:12 +0000 (00:36 +0000)
src/mime.cc

index 7d5ef466d53d79b09f7068f899faeb588daa78bb..e6cd48c309e5e7c95ac5412f22e1eebbdd1368a0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: mime.cc,v 1.25 1996/11/25 06:15:31 wessels Exp $
+ * $Id: mime.cc,v 1.26 1996/12/05 17:36:12 wessels Exp $
  *
  * DEBUG: section 25    MIME Parsing
  * AUTHOR: Harvest Derived
@@ -172,18 +172,18 @@ mime_headers_end(const char *mime)
     return (char *) end;
 }
 
+#ifdef OLD_CODE
 int
 mime_headers_size(const char *mime)
 {
     const char *end;
-
     end = mime_headers_end(mime);
-
     if (end)
        return end - mime;
     else
        return 0;
 }
+#endif
 
 const ext_table_entry *
 mime_ext_to_type(const char *extension)