diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-11-20 22:42:04 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-11-20 22:42:04 +0000 |
commit | 333569e691ffefacca651517712a1bfe39328c6d (patch) | |
tree | 6260fed0a663ea5da2aa2300eae8752640de2303 /audio | |
parent | Update MASTER_SITES and WWW (diff) |
Remove O_NONBLOCK from open() as it seems to be causing problems for
some people.
PR: 14880
Submitted by: Parag Patel <parag@codegen.com>
Notes
Notes:
svn path=/head/; revision=23219
Diffstat (limited to 'audio')
-rw-r--r-- | audio/dagrab/files/patch-ab | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/dagrab/files/patch-ab b/audio/dagrab/files/patch-ab new file mode 100644 index 000000000000..4bb9fc84dc44 --- /dev/null +++ b/audio/dagrab/files/patch-ab @@ -0,0 +1,20 @@ +*** dagrab.c-fbsd Sat Nov 13 12:29:44 1999 +--- dagrab.c Sat Nov 13 23:00:20 1999 +*************** +*** 503,509 **** + struct ioc_toc_header Th; + struct ioc_read_toc_single_entry Te; + +! if ((cdrom_fd=open(cd_dev,O_RDONLY|O_NONBLOCK))==-1){ + fprintf(stderr,"%s: error opening device %s\n",progname,cd_dev); + exit(1); + } +--- 503,509 ---- + struct ioc_toc_header Th; + struct ioc_read_toc_single_entry Te; + +! if ((cdrom_fd=open(cd_dev,O_RDONLY))==-1){ + fprintf(stderr,"%s: error opening device %s\n",progname,cd_dev); + exit(1); + } + |