aboutsummaryrefslogtreecommitdiff
path: root/libbb/utmp.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-04-06 18:50:05 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-04-06 18:50:05 +0200
commitf8d8aa1cea915ce115345e6e729eddc80e86f021 (patch)
treeabceef94710d221816cf56343b7cadf10de50e5c /libbb/utmp.c
parent87fb72032e6aa6abe5ac8fb05d22f43e8dde557b (diff)
downloadbusybox-f8d8aa1cea915ce115345e6e729eddc80e86f021.tar.gz
libbb: add skip_dev_pfx()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/utmp.c')
-rw-r--r--libbb/utmp.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libbb/utmp.c b/libbb/utmp.c
index d6ba336e3..68c358e9a 100644
--- a/libbb/utmp.c
+++ b/libbb/utmp.c
@@ -15,14 +15,6 @@ static void touch(const char *filename)
close(open(filename, O_WRONLY | O_CREAT, 0664));
}
-// TODO: move to libbb
-static const char* skip_dev_pfx(const char *tty_name)
-{
- if (strncmp(tty_name, "/dev/", 5) == 0)
- tty_name += 5;
- return tty_name;
-}
-
void FAST_FUNC write_new_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname)
{
struct utmp utent;