Mercurial > libdvdnav.hg
diff dvdread/dvd_input.c @ 244:a27c81078c3c src
removing O_EXCL, since it does not work with DVD images
(patch from Bastien)
author | mroi |
---|---|
date | Fri, 09 Apr 2004 12:15:26 +0000 |
parents | 70a34f697a50 |
children | 6853c398600c |
line wrap: on
line diff
--- a/dvdread/dvd_input.c Wed Mar 03 16:50:42 2004 +0000 +++ b/dvdread/dvd_input.c Fri Apr 09 12:15:26 2004 +0000 @@ -170,7 +170,7 @@ /* Open the device */ #ifndef WIN32 - dev->fd = open(target, O_RDONLY | O_EXCL); + dev->fd = open(target, O_RDONLY); #else dev->fd = open(target, O_RDONLY | O_BINARY); #endif