about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-01-27 03:42:24 -0600
committerEric Wong <e@80x24.org>2021-01-29 05:04:40 +0000
commit73084730ff8eba68349c062014ebc49ed6e38361 (patch)
tree232e0776c5401345f33de6c99635991280cca084
parentd3d1e6fd465c10a9f9ba7ffad9329e384640e51d (diff)
downloadpublic-inbox-73084730ff8eba68349c062014ebc49ed6e38361.tar.gz
The client PID is no longer sent to the daemon.
-rw-r--r--lib/PublicInbox/LEI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/LEI.pm b/lib/PublicInbox/LEI.pm
index abd7fc48..c017fd4e 100644
--- a/lib/PublicInbox/LEI.pm
+++ b/lib/PublicInbox/LEI.pm
@@ -765,7 +765,7 @@ sub accept_dispatch { # Listener {post_accept} callback
         }
         $self->{2}->autoflush(1); # keep stdout buffered until x_it|DESTROY
         # $ENV_STR = join('', map { "\0$_=$ENV{$_}" } keys %ENV);
-        # $buf = "$$\0$argc\0".join("\0", @ARGV).$ENV_STR."\0\0";
+        # $buf = "$argc\0".join("\0", @ARGV).$ENV_STR."\0\0";
         substr($buf, -2, 2, '') eq "\0\0" or  # s/\0\0\z//
                 return send($sock, 'request command truncated', MSG_EOR);
         my ($argc, @argv) = split(/\0/, $buf, -1);