diff options
Diffstat (limited to 'sys/fs/specfs')
-rw-r--r-- | sys/fs/specfs/spec_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index 5c003f9955f0..4a079468be31 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -243,8 +243,8 @@ spec_open(ap) struct tty *tp; tp = dev->si_tty; if (!tp->t_stop) { - printf("Warning:%s: no t_stop, using nostop\n", devtoname(dev)); - tp->t_stop = nostop; + printf("Warning:%s: no t_stop, using nottystop\n", devtoname(dev)); + tp->t_stop = nottystop; } } } |