ntdll: Check for NetBSD in CDROM_Verify.

This commit is contained in:
André Hentschel 2012-06-14 23:37:33 +02:00 committed by Alexandre Julliard
parent 14404713de
commit 4f08dc0a7b
1 changed files with 1 additions and 1 deletions

View File

@ -1141,7 +1141,7 @@ static NTSTATUS CDROM_Verify(int dev, int fd)
return STATUS_SUCCESS;
else
return STATUS_NO_MEDIA_IN_DEVICE;
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__DragonFly__)
int ret;
ret = ioctl(fd, CDIOCSTART, NULL);
if(ret == 0)