PERFORCE change 146517 for review

Ed Schouten ed at FreeBSD.org
Sun Aug 3 11:53:18 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=146517

Change 146517 by ed at ed_flippo on 2008/08/03 11:52:33

	Print the session ID and process group ID in correct order.

Affected files ...

.. //depot/projects/mpsafetty/sys/kern/tty.c#12 edit

Differences ...

==== //depot/projects/mpsafetty/sys/kern/tty.c#12 (text+ko) ====

@@ -1754,8 +1754,8 @@
 		    tp->t_outq.to_end - tp->t_outq.to_begin,
 		    osiz - tp->t_outlow,
 		    tp->t_column,
-		    tp->t_pgrp ? tp->t_pgrp->pg_id : 0,
-		    tp->t_session ? tp->t_session->s_sid : 0);
+		    tp->t_session ? tp->t_session->s_sid : 0,
+		    tp->t_pgrp ? tp->t_pgrp->pg_id : 0);
 
 		/* Flag bits */
 		for (i = j = 0; ttystates[i].flag; i++)


More information about the p4-projects mailing list