ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit 7f7c3f29e976d0144bb2d3a3de5a0357edf6084c
parent 35bff9489e242ebfce885a27a5616db273ada864
Author: sin <sin@2f30.org>
Date:   Fri,  6 Sep 2013 10:29:00 +0100

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

Diffstat:
Mutil/tty.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/tty.c b/util/tty.c @@ -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;