diff options
| author | Nate Williams <nate@FreeBSD.org> | 1996-06-12 20:07:09 +0000 | 
|---|---|---|
| committer | Nate Williams <nate@FreeBSD.org> | 1996-06-12 20:07:09 +0000 | 
| commit | a136e00402f1d5e1a8d9293472ba345eba2efc9b (patch) | |
| tree | 6daf39172cbbeaa940846d6264b8ece62a5ce719 | |
| parent | 74a9466cc2c61358505d73ebca85779adfec6726 (diff) | |
Notes
| -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 c9a395b73234..9711e0ced90f 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 */  | 
