Skip 'cua' 3 chars like 'tty' 3 chars

This commit is contained in:
Andrey A. Chernov 1994-10-02 14:11:32 +00:00
parent ef0797abc9
commit efc18e2ca9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3301

View File

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: print.c,v 1.3 1994/10/02 08:19:12 davidg Exp $
* $Id: print.c,v 1.4 1994/10/02 08:33:30 davidg Exp $
*/
#ifndef lint
@ -325,7 +325,8 @@ tname(k, ve)
if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL)
(void)printf("%-*s", v->width, "??");
else {
if (strncmp(ttname, "tty", 3) == 0)
if (strncmp(ttname, "tty", 3) == 0 ||
strncmp(ttname, "cua", 3) == 0)
ttname += 3;
(void)printf("%*.*s%c", v->width-1, v->width-1, ttname,
KI_EPROC(k)->e_flag & EPROC_CTTY ? ' ' : '-');