You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2014/03/04 10:06:15 UTC

git commit: TS-2611 Fix build bustage, thanks Jenkins for being my best friend

Repository: trafficserver
Updated Branches:
  refs/heads/master 1c948c380 -> 6dfc13123


TS-2611 Fix build bustage, thanks Jenkins for being my best friend


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

Branch: refs/heads/master
Commit: 6dfc1312399df84df8d83c97913e04bc901a5732
Parents: 1c948c3
Author: Leif Hedstrom <zw...@apache.org>
Authored: Tue Mar 4 09:06:05 2014 +0000
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Tue Mar 4 09:06:05 2014 +0000

----------------------------------------------------------------------
 plugins/experimental/s3_auth/s3_auth.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/6dfc1312/plugins/experimental/s3_auth/s3_auth.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/s3_auth/s3_auth.cc b/plugins/experimental/s3_auth/s3_auth.cc
index 337379a..9f3476b 100644
--- a/plugins/experimental/s3_auth/s3_auth.cc
+++ b/plugins/experimental/s3_auth/s3_auth.cc
@@ -366,7 +366,7 @@ S3Request::authorize(S3Config *s3)
 ///////////////////////////////////////////////////////////////////////////////
 // This is the main continuation.
 int
-event_handler(TSCont cont, TSEvent event, void* edata)
+event_handler(TSCont cont, TSEvent /* event */, void* edata)
 {
   TSHttpTxn txnp = static_cast<TSHttpTxn>(edata);
   S3Request request(txnp);
@@ -488,7 +488,7 @@ TSRemapDeleteInstance(void* ih)
 // This is the main "entry" point for the plugin, called for every request.
 //
 TSRemapStatus
-TSRemapDoRemap(void* ih, TSHttpTxn txnp, TSRemapRequestInfo *rri)
+TSRemapDoRemap(void* ih, TSHttpTxn txnp, TSRemapRequestInfo */* rri */)
 {
   S3Config* s3 = static_cast<S3Config*>(ih);