25 lines
743 B
Diff
25 lines
743 B
Diff
From 82d568e88c858b5094b92440515eba3744fe07d3 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
Date: Fri, 20 Jun 2014 18:44:39 -0400
|
|
Subject: [PATCH] util: do not strip /dev prefix twice
|
|
|
|
(cherry picked from commit 0d460faf732ff3c9483dbfa5db6905d53c2e2522)
|
|
---
|
|
src/shared/util.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
diff --git a/src/shared/util.c b/src/shared/util.c
|
|
index 6165d72d..8b0e29dd 100644
|
|
--- a/src/shared/util.c
|
|
+++ b/src/shared/util.c
|
|
@@ -3619,9 +3619,6 @@ char *fstab_node_to_udev_node(const char *p) {
|
|
bool tty_is_vc(const char *tty) {
|
|
assert(tty);
|
|
|
|
- if (startswith(tty, "/dev/"))
|
|
- tty += 5;
|
|
-
|
|
return vtnr_from_tty(tty) >= 0;
|
|
}
|
|
|