summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-12-20 21:38:13 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-12-20 21:38:13 +0000
commit118253ca24b4c12218553b1f5468c2ced56c4fb6 (patch)
tree2d538aea2501037b9cc62520f443aa43d02f61a7
parente87047b437359634a2b183f0acafaa95e2b53985 (diff)
Notes
-rw-r--r--sys/kern/tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index d359f8da0770..ddf26b57f403 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -3111,7 +3111,7 @@ open_top:
if (flag & O_NONBLOCK)
return (EBUSY);
error = tsleep(&tp->t_actout,
- TTIPRI | PCATCH, "siobi", 0);
+ TTIPRI | PCATCH, "ttybi", 0);
if (error != 0 || (tp->t_flags & TS_GONE))
goto out;
goto open_top;