Don't use 'tty/' rather use 'tty'

This commit is contained in:
sin 2013-09-06 10:29:00 +01:00
parent 35bff9489e
commit 7f7c3f29e9

View File

@ -15,7 +15,7 @@ char *
ttytostr(int tty_maj, int tty_min)
{
const char *pts = "pts/";
const char *tty = "tty/";
const char *tty = "tty";
char *ttystr;
size_t len;