Repository: trafficserver Updated Branches: refs/heads/master cbac493e8 -> 669c6c2b1
Fix misspelled FetchSM::ext_lanuch Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/669c6c2b Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/669c6c2b Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/669c6c2b Branch: refs/heads/master Commit: 669c6c2b17d5114c5bf08985f9602e32f254fc46 Parents: cbac493 Author: Ryo Okubo <[email protected]> Authored: Mon Nov 17 08:15:32 2014 -0800 Committer: James Peach <[email protected]> Committed: Mon Nov 17 08:15:47 2014 -0800 ---------------------------------------------------------------------- proxy/FetchSM.cc | 2 +- proxy/FetchSM.h | 2 +- proxy/InkAPI.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/669c6c2b/proxy/FetchSM.cc ---------------------------------------------------------------------- diff --git a/proxy/FetchSM.cc b/proxy/FetchSM.cc index ed6fd8e..c5fc04b 100644 --- a/proxy/FetchSM.cc +++ b/proxy/FetchSM.cc @@ -581,7 +581,7 @@ FetchSM::ext_add_header(const char *name, int name_len, } void -FetchSM::ext_lanuch() +FetchSM::ext_launch() { req_buffer->write("\r\n", 2); httpConnect(); http://git-wip-us.apache.org/repos/asf/trafficserver/blob/669c6c2b/proxy/FetchSM.h ---------------------------------------------------------------------- diff --git a/proxy/FetchSM.h b/proxy/FetchSM.h index 1725f37..c48bb4f 100644 --- a/proxy/FetchSM.h +++ b/proxy/FetchSM.h @@ -115,7 +115,7 @@ public: const sockaddr *client_addr, int flags); void ext_add_header(const char *name, int name_len, const char *value, int value_len); - void ext_lanuch(); + void ext_launch(); void ext_destroy(); ssize_t ext_read_data(char *buf, size_t len); void ext_write_data(const void *data, size_t len); http://git-wip-us.apache.org/repos/asf/trafficserver/blob/669c6c2b/proxy/InkAPI.cc ---------------------------------------------------------------------- diff --git a/proxy/InkAPI.cc b/proxy/InkAPI.cc index 5033d91..62f0870 100644 --- a/proxy/InkAPI.cc +++ b/proxy/InkAPI.cc @@ -7369,7 +7369,7 @@ TSFetchLaunch(TSFetchSM fetch_sm) { sdk_assert(sdk_sanity_check_fetch_sm(fetch_sm) == TS_SUCCESS); - ((FetchSM*)fetch_sm)->ext_lanuch(); + ((FetchSM*)fetch_sm)->ext_launch(); } void
