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 2015/08/06 05:08:38 UTC

trafficserver git commit: TS-3824 Fix #include of pcre for a couple of plugins

Repository: trafficserver
Updated Branches:
  refs/heads/master 4019b9708 -> 8939a3c68


TS-3824 Fix #include of pcre for a couple of plugins


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

Branch: refs/heads/master
Commit: 8939a3c68691137751fa11687b4b891505d8e510
Parents: 4019b97
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Aug 5 21:08:10 2015 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Aug 5 21:08:10 2015 -0600

----------------------------------------------------------------------
 plugins/experimental/url_sig/url_sig.c | 1 +
 plugins/experimental/url_sig/url_sig.h | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8939a3c6/plugins/experimental/url_sig/url_sig.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/url_sig/url_sig.c b/plugins/experimental/url_sig/url_sig.c
index 046800d..fe90ee7 100644
--- a/plugins/experimental/url_sig/url_sig.c
+++ b/plugins/experimental/url_sig/url_sig.c
@@ -16,6 +16,7 @@
   limitations under the License.
  */
 
+#include "ts/ink_defs.h"
 #include "url_sig.h"
 
 #include <stdio.h>

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8939a3c6/plugins/experimental/url_sig/url_sig.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/url_sig/url_sig.h b/plugins/experimental/url_sig/url_sig.h
index d2f4cd0..6e22600 100644
--- a/plugins/experimental/url_sig/url_sig.h
+++ b/plugins/experimental/url_sig/url_sig.h
@@ -19,7 +19,6 @@
 #ifndef URL_SIG_H_
 #define URL_SIG_H_
 
-#define VERSION "1.0"
 /* in the query string that we add to sign the url: */
 #define CIP_QSTRING "C" /* C=24.0.33.12 designates the client IP address */
 #define EXP_QSTRING "E" /* E=1356128799 means expires at (seconds since Unix epoch) */