Repository: trafficserver Updated Branches: refs/heads/master ea43e6e42 -> 9a318f60c
stats_over_http: remove stray whitespace Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9a318f60 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9a318f60 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9a318f60 Branch: refs/heads/master Commit: 9a318f60cae9fb9d7afc6c4050db9e2a8dfacba4 Parents: ea43e6e Author: James Peach <[email protected]> Authored: Wed Sep 10 13:45:00 2014 -0700 Committer: James Peach <[email protected]> Committed: Wed Sep 10 13:45:00 2014 -0700 ---------------------------------------------------------------------- plugins/stats_over_http/stats_over_http.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9a318f60/plugins/stats_over_http/stats_over_http.c ---------------------------------------------------------------------- diff --git a/plugins/stats_over_http/stats_over_http.c b/plugins/stats_over_http/stats_over_http.c index 80455ba..7e6071a 100644 --- a/plugins/stats_over_http/stats_over_http.c +++ b/plugins/stats_over_http/stats_over_http.c @@ -209,21 +209,21 @@ stats_origin(TSCont contp ATS_UNUSED, TSEvent event ATS_UNUSED, void *edata) TSEvent reenable = TS_EVENT_HTTP_CONTINUE; TSDebug("istats", "in the read stuff"); - + if (TSHttpTxnClientReqGet(txnp, &reqp, &hdr_loc) != TS_SUCCESS) goto cleanup; - + if (TSHttpHdrUrlGet(reqp, hdr_loc, &url_loc) != TS_SUCCESS) goto cleanup; - + int path_len = 0; const char* path = TSUrlPathGet(reqp,url_loc,&path_len); TSDebug("istats","Path: %.*s",path_len,path); - + if (! (path_len != 0 && path_len == url_path_len && !memcmp(path,url_path,url_path_len)) ) { goto notforme; } - + TSSkipRemappingSet(txnp,1); //not strictly necessary, but speed is everything these days /* This is us -- register our intercept */
