You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by su...@apache.org on 2014/11/12 00:27:09 UTC

trafficserver git commit: fix compile error

Repository: trafficserver
Updated Branches:
  refs/heads/master 278306edf -> 6b61e9c59


fix compile error


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/6b61e9c5
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/6b61e9c5
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/6b61e9c5

Branch: refs/heads/master
Commit: 6b61e9c596d4414187c1ea5ea0ca64e9a27458fd
Parents: 278306e
Author: Sudheer Vinukonda <su...@yahoo-inc.com>
Authored: Tue Nov 11 23:26:54 2014 +0000
Committer: Sudheer Vinukonda <su...@yahoo-inc.com>
Committed: Tue Nov 11 23:26:54 2014 +0000

----------------------------------------------------------------------
 plugins/experimental/header_normalize/header_normalize.cc | 2 +-
 proxy/spdy/SpdyCallbacks.cc                               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/6b61e9c5/plugins/experimental/header_normalize/header_normalize.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/header_normalize/header_normalize.cc b/plugins/experimental/header_normalize/header_normalize.cc
index cfe0d14..0266957 100644
--- a/plugins/experimental/header_normalize/header_normalize.cc
+++ b/plugins/experimental/header_normalize/header_normalize.cc
@@ -6,7 +6,7 @@
 // required by protocols such as spdy/http2 etc.
 //
 // Note that the plugin currently uses READ_REQUEST_HDR_HOOK to camel-case
-// the headers. As an optimization, it can be changed to SEND_REQUEST_HDR_HOOK 
+// the headers. As an optimization, it can be changed to SEND_REQUEST_HDR_HOOK
 // so that it only converts, if/when the request is being sent to the origin
 //
 // To use this plugin, configure a remap.config rule like

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/6b61e9c5/proxy/spdy/SpdyCallbacks.cc
----------------------------------------------------------------------
diff --git a/proxy/spdy/SpdyCallbacks.cc b/proxy/spdy/SpdyCallbacks.cc
index 470ed71..4d1aceb 100644
--- a/proxy/spdy/SpdyCallbacks.cc
+++ b/proxy/spdy/SpdyCallbacks.cc
@@ -384,7 +384,7 @@ spdy_session_delta_window_size(SpdyClientSession *sm)
     sess_delta_window_size += req->delta_window_size;
   }
   Debug("spdy", "----sm_id:%" PRId64 ", session delta_window_size:%u",
-        sess_delta_window_size);
+        sm->sm_id, sess_delta_window_size);
   return sess_delta_window_size;
 }