diff options
author | nate <nate@FreeBSD.org> | 1996-06-12 20:07:09 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1996-06-12 20:07:09 +0000 |
commit | 2bad10e375234a35c2cb21aa36e7da920300af93 (patch) | |
tree | 6daf39172cbbeaa940846d6264b8ece62a5ce719 /sys/net | |
parent | cc918ec13234c8b893f72057963b977b14663b03 (diff) | |
download | FreeBSD-src-2bad10e375234a35c2cb21aa36e7da920300af93.zip FreeBSD-src-2bad10e375234a35c2cb21aa36e7da920300af93.tar.gz |
Only print out the new masks if bootverbose is set.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/ppp_tty.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/net/ppp_tty.c b/sys/net/ppp_tty.c index c9a395b..9711e0c 100644 --- a/sys/net/ppp_tty.c +++ b/sys/net/ppp_tty.c @@ -70,7 +70,7 @@ * Paul Mackerras (paulus@cs.anu.edu.au). */ -/* $Id: ppp_tty.c,v 1.6 1996/06/10 23:07:36 gpalmer Exp $ */ +/* $Id: ppp_tty.c,v 1.7 1996/06/12 19:24:03 gpalmer Exp $ */ /* from Id: ppp_tty.c,v 1.3 1995/08/16 01:36:40 paulus Exp */ /* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */ @@ -191,7 +191,9 @@ pppasyncattach(dummy) update_intr_masks(); splx(s); - printf("new masks: bio %x, tty %x, net %x\n", bio_imask, tty_imask, net_imask); + if ( bootverbose ) + printf("new masks: bio %x, tty %x, net %x\n", + bio_imask, tty_imask, net_imask); #endif /* register line discipline */ |