From 59f90414fd0d0db1d036797790b1fc3b9fcc9f2b Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Fri, 7 Jan 2022 12:55:45 -0500 Subject: [PATCH] fixed comments about pipes with child process --- lib/Auth/Source/FSFDrupalAuth.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Auth/Source/FSFDrupalAuth.php b/lib/Auth/Source/FSFDrupalAuth.php index 0e4eff6..3ef7b88 100644 --- a/lib/Auth/Source/FSFDrupalAuth.php +++ b/lib/Auth/Source/FSFDrupalAuth.php @@ -137,9 +137,9 @@ class FSFDrupalAuth extends \SimpleSAML\Module\core\Auth\UserPassBase // pipes code based off of https://www.php.net/manual/en/function.proc-open.php // CC-BY 3.0 or later $descriptorspec = array( - 0 => array("pipe", "r"), // stdin is a pipe that the child will read from - 1 => array("pipe", "w"), // stdout is a pipe that the child will write to - 2 => array("pipe", "w") // stderr is a file to write to + 0 => array("pipe", "r"), // stdin is a pipe that the child may read from + 1 => array("pipe", "w"), // stdout is a pipe that the child may write to + 2 => array("pipe", "w") // stderr is a pipe that the child may write to ); $cwd = "../modules/fsfdrupalauth/extlib"; -- 2.25.1