Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Oct 2002 10:00:44 -0700 (PDT)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 19900 for review
Message-ID:  <200210221700.g9MH0iLb015877@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=19900

Change 19900 by des@des.at.des.thinksec.com on 2002/10/22 10:00:14

	Write message to stdout, not stderr.
	
	Submitted by:	jmallett
	Sponsored by:	Rachel Hestilow <rachel@jerkcity.com>

Affected files ...

.. //depot/projects/openpam/lib/openpam_ttyconv.c#13 edit

Differences ...

==== //depot/projects/openpam/lib/openpam_ttyconv.c#13 (text+ko) ====

@@ -31,7 +31,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $P4: //depot/projects/openpam/lib/openpam_ttyconv.c#12 $
+ * $P4: //depot/projects/openpam/lib/openpam_ttyconv.c#13 $
  */
 
 #include <sys/types.h>
@@ -76,7 +76,7 @@
 	action.sa_flags = 0;
 	sigemptyset(&action.sa_mask);
 	sigaction(SIGALRM, &action, &saved_action);
-	fputs(msg, stderr);
+	fputs(msg, stdout);
 	buf[0] = '\0';
 	timed_out = 0;
 	saved_alarm = alarm(openpam_ttyconv_timeout);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210221700.g9MH0iLb015877>