]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Change a mis-use of SM_PAGE_SIZE - asn.c uses MEM_4K_BUF's, and even
authoradrian <>
Mon, 18 Dec 2000 16:48:50 +0000 (16:48 +0000)
committeradrian <>
Mon, 18 Dec 2000 16:48:50 +0000 (16:48 +0000)
though SM_PAGE_SIZE may be 4k the dependency shouldn't be there.

src/asn.cc

index 54d3f3a0f086dd012fd7b13a6d506c680fa4fce7..2631a695e67b71bcc58188c30054895104ef2045 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: asn.cc,v 1.64 2000/11/07 23:43:15 wessels Exp $
+ * $Id: asn.cc,v 1.65 2000/12/18 09:48:50 adrian Exp $
  *
  * DEBUG: section 53    AS Number handling
  * AUTHOR: Duane Wessels, Kostas Anagnostakis
@@ -272,7 +272,7 @@ asHandleReply(void *data, char *buf, ssize_t size)
            e,
            asState->seen,
            asState->offset,
-           SM_PAGE_SIZE,
+           4096,
            buf,
            asHandleReply,
            asState);
@@ -282,7 +282,7 @@ asHandleReply(void *data, char *buf, ssize_t size)
            e,
            asState->seen,
            asState->offset,
-           SM_PAGE_SIZE,
+           4096,
            buf,
            asHandleReply,
            asState);