Commit 69075d0c authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Remove incorrect support for FreeBSD and NetBSD in

DVD_StartSession().
parent 0febf5fb
......@@ -1736,7 +1736,7 @@ static NTSTATUS DVD_EndSession(int fd, PDVD_SESSION_ID sid)
TRACE("\n");
return CDROM_GetStatusCode(ioctl(fd, DVD_AUTH, &auth_info));
#elif defined(__FreeBSD__) || defined(__NetBSD__)
return CDROM_GetStatusCode(ioctl(cdrom_cache[dev].fd, (rmv->PreventMediaRemoval) ? CDIOCPREVENT : CDIOCALLOW, NULL));
return STATUS_NOT_SUPPORTED;
#else
return STATUS_NOT_SUPPORTED;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment