From f858aedc98e0dd70dd2928e276acdb9be0b35a4b Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 27 May 2004 10:47:07 +0000 Subject: [PATCH] We shouldn't terminate if we can't get an MCN. --- 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 d719a1a8..3ee1f531 100644 --- a/lib/_cdio_osx.c +++ b/lib/_cdio_osx.c @@ -1,5 +1,5 @@ /* - $Id: _cdio_osx.c,v 1.22 2004/05/07 09:55:54 rocky Exp $ + $Id: _cdio_osx.c,v 1.23 2004/05/27 10:47:07 rocky Exp $ Copyright (C) 2003, 2004 Rocky Bernstein from vcdimager code: @@ -33,7 +33,7 @@ # include "config.h" #endif -static const char _rcsid[] = "$Id: _cdio_osx.c,v 1.22 2004/05/07 09:55:54 rocky Exp $"; +static const char _rcsid[] = "$Id: _cdio_osx.c,v 1.23 2004/05/27 10:47:07 rocky Exp $"; #include #include @@ -589,7 +589,7 @@ _get_mcn_osx (const void *env) { if( ioctl( _obj->gen.fd, DKIOCCDREADMCN, &cd_read ) < 0 ) { - cdio_error( "could not read MCN, %s", strerror(errno) ); + cdio_warn( "could not read MCN, %s", strerror(errno) ); return NULL; } return strdup((char*)cd_read.mcn);