diff options
author | 1997-07-07 08:21:07 +0000 | |
---|---|---|
committer | 1997-07-07 08:21:07 +0000 | |
commit | f7ef2aa097ad3d6593ef43d813ee9e5a8435197f (patch) | |
tree | 853ab24efeb213558e1253aa21bc64a68ad60180 | |
parent | update to my current config file (diff) | |
download | wireguard-openbsd-f7ef2aa097ad3d6593ef43d813ee9e5a8435197f.tar.xz wireguard-openbsd-f7ef2aa097ad3d6593ef43d813ee9e5a8435197f.zip |
fix typo ... i hope i got the right one (3 vs. 2)
-rw-r--r-- | sys/arch/pmax/dev/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/dev/dc.c b/sys/arch/pmax/dev/dc.c index 8b5712d7372..da0346fc622 100644 --- a/sys/arch/pmax/dev/dc.c +++ b/sys/arch/pmax/dev/dc.c @@ -1060,7 +1060,7 @@ dcscan(arg) dsr = MSR_DSR2; #ifdef HW_FLOW_CONTROL /*limit = (pmax_boardtype == DS_PMAX) ? 2 : 3;*/ - limit = (sc->dc_rtscts & (1 << 3)) :3 : 2; /*XXX*/ + limit = (sc->dc_rtscts & (1 << 3)) ? 3 : 2; /*XXX*/ #else limit = 2; #endif |