summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConstantine Sapuntzakis <csapuntz@cvs.openbsd.org>1999-07-20 09:41:42 +0000
committerConstantine Sapuntzakis <csapuntz@cvs.openbsd.org>1999-07-20 09:41:42 +0000
commit9e10d1fa7abf4a851fefd6e156b516c3983b942c (patch)
tree62d0f6b86d1c29da19549cea68675c0efddb8827
parent3d37f47c212bab6c5487d8a3e0491cb6b7729035 (diff)
Be more generous with timeout on cd_play_msf
-rw-r--r--sys/scsi/cd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c
index e136dd57dba..2deb29ec3c3 100644
--- a/sys/scsi/cd.c
+++ b/sys/scsi/cd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cd.c,v 1.37 1999/07/20 06:21:59 csapuntz Exp $ */
+/* $OpenBSD: cd.c,v 1.38 1999/07/20 09:41:41 csapuntz Exp $ */
/* $NetBSD: cd.c,v 1.100 1997/04/02 02:29:30 mycroft Exp $ */
/*
@@ -1319,7 +1319,7 @@ cd_play_msf(cd, startm, starts, startf, endm, ends, endf)
scsi_cmd.end_f = endf;
return (scsi_scsi_cmd(cd->sc_link,
(struct scsi_generic *)&scsi_cmd, sizeof(scsi_cmd),
- 0, 0, CDRETRIES, 2000, NULL, 0));
+ 0, 0, CDRETRIES, 20000, NULL, 0));
}
/*