On the fix-authn-errors branch:

* test/MockHTTPinC/MockHTTP.h:
  (mhMatchAny): Remove a duplicate function declaration added by mistake
       in r2475.


git-svn-id: https://svn.apache.org/repos/asf/serf/branches/fix-authn-errors@1700006 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/MockHTTPinC/MockHTTP.h b/test/MockHTTPinC/MockHTTP.h
index 2715601..329a90e 100644
--- a/test/MockHTTPinC/MockHTTP.h
+++ b/test/MockHTTPinC/MockHTTP.h
@@ -648,13 +648,12 @@
                                           const char *hdr, const char *value);
 mhReqMatcherBldr_t *mhMatchHeaderNotEqualTo(const MockHTTP *mh,
                                              const char *hdr, const char *value);
-/* TODO: make this a generic matcher */
-mhReqMatcherBldr_t *mhMatchAny(const MockHTTP *mh);
 
 void mhGivenConnSetup(MockHTTP *mh, ...);
 mhConnMatcherBldr_t *mhMatchClientCertCNEqualTo(const MockHTTP *mh,
                                                 const char *expected);
 mhConnMatcherBldr_t *mhMatchClientCertValid(const MockHTTP *mh);
+    /* TODO: make this a generic matcher */
 mhReqMatcherBldr_t *mhMatchAny(const MockHTTP *mh);
 
 mhResponse_t *mhNewResponseForRequest(MockHTTP *mh, mhServCtx_t *ctx,