Author: adrian.chadd
Date: Sun Feb  1 21:33:30 2009
New Revision: 13775

Modified:
    branches/LUSCA_HEAD/src/store.c

Log:
Remove a strBuf() used in debugging.



Modified: branches/LUSCA_HEAD/src/store.c
==============================================================================
--- branches/LUSCA_HEAD/src/store.c     (original)
+++ branches/LUSCA_HEAD/src/store.c     Sun Feb  1 21:33:30 2009
@@ -1068,8 +1068,10 @@
      state->seen_offset = offset;
      if (!strLen2(e->mem_obj->reply->content_type) ||  
strCmp(e->mem_obj->reply->content_type, "x-squid-internal/vary") != 0) {
        /* This is not our Vary marker object. Bail out. */
-       debug(33, 1) ("storeLocateVary: Not our vary marker object, %s  
= '%s', '%s'/'%s'\n",
-           storeKeyText(e->hash.key), e->mem_obj->url, vary_data,  
strBuf(accept_encoding) ? strBuf(accept_encoding) : "-");
+       debug(33, 1) ("storeLocateVary: Not our vary marker object, %s  
= '%s', '%s'/'%.*s'\n",
+           storeKeyText(e->hash.key), e->mem_obj->url, vary_data,
+           strLen2(accept_encoding) ? strLen2(accept_encoding) : 1,
+           strBuf2(accept_encoding) ? strBuf2(accept_encoding) : "-");
        storeLocateVaryCallback(state);
        return;
      }

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"lusca-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/lusca-commit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to