fix Ssyshere to Shere after re-reading UUCP protocol docs
Matt S Trout [Sun, 12 Feb 2012 02:34:05 +0000 (02:34 +0000)]
Changes
lib/Tak/ConnectorService.pm
lib/Tak/STDIOSetup.pm

diff --git a/Changes b/Changes
index d3e7f5c..04b7eb8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+  - fix Ssyshere to Shere after re-reading UUCP protocol docs
+
 0.001003 - 2011-12-23
   - fix mk-fat to not miss anything else
 
index 3bcf64e..3fde0f0 100644 (file)
@@ -29,7 +29,7 @@ sub handle_create {
     # confuse things by sending before the dup.
     my $up = <$kid_out>;
     die [ failure => "Garbled response from child: $up" ]
-      unless $up eq "Ssyshere\n";
+      unless $up eq "Shere\n";
   }
   my $connection = Tak::ConnectionService->new(
     read_fh => $kid_out, write_fh => $kid_in,
index 30c9851..eca4779 100644 (file)
@@ -38,7 +38,7 @@ sub run {
   log_debug { "Node starting" };
   # Tell the other end that we've finished messing around with file
   # descriptors and that it's therefore safe to start sending requests.
-  print $stdout "Ssyshere\n";
+  print $stdout "Shere\n";
   Tak->loop_until($done);
   if (our $Next) { goto &$Next }
 }