You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2012/03/31 01:28:04 UTC

git commit: fixed typo: said to pass socket_pass and should be socket_path

Updated Branches:
  refs/heads/master d69561ec5 -> b65598f7b


fixed typo: said to pass socket_pass and should be socket_path


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

Branch: refs/heads/master
Commit: b65598f7b13df2b4899a4a9d4dfca0b1d782b94e
Parents: d69561e
Author: Bryan Call <br...@yahoo.com>
Authored: Fri Mar 30 16:26:30 2012 -0700
Committer: Bryan Call <br...@yahoo.com>
Committed: Fri Mar 30 16:26:30 2012 -0700

----------------------------------------------------------------------
 .../perl/AdminClient/lib/Apache/TS/AdminClient.pm  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b65598f7/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm
----------------------------------------------------------------------
diff --git a/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm b/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm
index 8c41d1d..16652a2 100644
--- a/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm
+++ b/contrib/perl/AdminClient/lib/Apache/TS/AdminClient.pm
@@ -86,7 +86,7 @@ sub new {
     $self->{_socket_path} = $args{socket_path} || _find_socket();
     $self->{_socket} = undef;
     croak
-"Unable to locate socket, please pass socket_pass with the management api socket location to Apache::TS::AdminClient"
+"Unable to locate socket, please pass socket_path with the management api socket location to Apache::TS::AdminClient"
       if ( !$self->{_socket_path} );
     if (   ( !-r $self->{_socket_path} )
         or ( !-w $self->{_socket_path} )