From 61374f11617feb6dfbe11f4cacedf4f88dfa02f0 Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 29 Aug 2004 03:05:53 +0000 Subject: [PATCH] CD-ROM media type does not indicate whether a CD is CD-DA or CD-DATA --- lib/_cdio_osx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/_cdio_osx.c b/lib/_cdio_osx.c index 6676a40f..6d337030 100644 --- a/lib/_cdio_osx.c +++ b/lib/_cdio_osx.c @@ -1,5 +1,5 @@ /* - $Id: _cdio_osx.c,v 1.62 2004/08/28 16:06:25 rocky Exp $ + $Id: _cdio_osx.c,v 1.63 2004/08/29 03:05:53 rocky Exp $ Copyright (C) 2003, 2004 Rocky Bernstein from vcdimager code: @@ -34,7 +34,7 @@ #include "config.h" #endif -static const char _rcsid[] = "$Id: _cdio_osx.c,v 1.62 2004/08/28 16:06:25 rocky Exp $"; +static const char _rcsid[] = "$Id: _cdio_osx.c,v 1.63 2004/08/29 03:05:53 rocky Exp $"; #include #include @@ -414,7 +414,7 @@ get_discmode_osx (void *p_user_data) else if (0 == strncmp(str, "DVD-RAM", sizeof(str)) ) i_discmode = CDIO_DISC_MODE_DVD_RAM; else if (0 == strncmp(str, "CD-ROM", sizeof(str)) ) - i_discmode = CDIO_DISC_MODE_CD_DA; + i_discmode = CDIO_DISC_MODE_CD_DATA; else if (0 == strncmp(str, "CDR", sizeof(str)) ) i_discmode = CDIO_DISC_MODE_CD_DATA; else if (0 == strncmp(str, "CDRW", sizeof(str)) )