summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcsapuntz <csapuntz@openbsd.org>1999-07-20 09:41:41 +0000
committercsapuntz <csapuntz@openbsd.org>1999-07-20 09:41:41 +0000
commit3d27a073f86b9ad5e465fee14c7a25a9daee252b (patch)
treed9a521dd741b7ccb7d0f510ec3ea8b27a183e0e0
parentFix SIS 5597 define. (diff)
downloadwireguard-openbsd-3d27a073f86b9ad5e465fee14c7a25a9daee252b.tar.xz
wireguard-openbsd-3d27a073f86b9ad5e465fee14c7a25a9daee252b.zip
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));
}
/*