diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-08-26 22:28:16 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-08-26 22:28:16 +0000 |
commit | a256fbf8745036a878bc2d0213d7991168453b66 (patch) | |
tree | 491c0edfd34ed19a64c09a4aa4d7612a510f4082 | |
parent | 03f7ee6d1c10143cb9687138facbf34e0322edf4 (diff) |
increase timeout for "lost messages"
-rw-r--r-- | sys/dev/ic/rlnsubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/rlnsubr.c b/sys/dev/ic/rlnsubr.c index e66f30da996..70fb4741031 100644 --- a/sys/dev/ic/rlnsubr.c +++ b/sys/dev/ic/rlnsubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rlnsubr.c,v 1.2 1999/08/19 06:16:32 d Exp $ */ +/* $OpenBSD: rlnsubr.c,v 1.3 1999/08/26 22:28:15 d Exp $ */ /* * David Leonard <d@openbsd.org>, 1999. Public Domain. * @@ -744,7 +744,7 @@ rln_msg_txrx(sc, tx, txlen, rx, rxlen) ien = rln_enable(sc, 1); /* Wait for the reply message. */ - if (rln_mbox_wait(sc, txc->cmd_seq, 2000) <= 0) { + if (rln_mbox_wait(sc, txc->cmd_seq, 4000) <= 0) { printf("%s: lost message %c%d seq %d\n", sc->sc_dev.dv_xname, txc->cmd_letter, txc->cmd_fn, txc->cmd_seq); rln_enable(sc, ien); |