=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/telnet/commands.c,v retrieving revision 1.41 retrieving revision 1.42 diff -c -r1.41 -r1.42 *** src/usr.bin/telnet/commands.c 2002/02/17 17:20:49 1.41 --- src/usr.bin/telnet/commands.c 2002/06/12 06:07:16 1.42 *************** *** 1,4 **** ! /* $OpenBSD: commands.c,v 1.41 2002/02/17 17:20:49 millert Exp $ */ /* $NetBSD: commands.c,v 1.14 1996/03/24 22:03:48 jtk Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: commands.c,v 1.42 2002/06/12 06:07:16 mpech Exp $ */ /* $NetBSD: commands.c,v 1.14 1996/03/24 22:03:48 jtk Exp $ */ /* *************** *** 2146,2153 **** printf("SIGIO received %d time%s.\r\n", sigiocount, (sigiocount == 1)? "":"s"); if (In3270) { ! printf("Process ID %d, process group %d.\r\n", ! getpid(), getpgrp()); printf("Terminal input:\r\n"); filestuff(tin); printf("Terminal output:\r\n"); --- 2146,2153 ---- printf("SIGIO received %d time%s.\r\n", sigiocount, (sigiocount == 1)? "":"s"); if (In3270) { ! printf("Process ID %ld, process group %ld.\r\n", ! (long)getpid(), (long)getpgrp()); printf("Terminal input:\r\n"); filestuff(tin); printf("Terminal output:\r\n");