diff --git a/NEWS b/NEWS index 2600e6ab..01ae6210 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +0.72 +- Update doc + 0.71 - Some Joliet support. @@ -154,4 +157,4 @@ 0.1 Routines split off from VCDImager. -$Id: NEWS,v 1.57 2004/11/07 21:13:10 rocky Exp $ +$Id: NEWS,v 1.58 2004/11/21 22:32:03 rocky Exp $ diff --git a/configure.ac b/configure.ac index 96a25abd..53d4a5f3 100644 --- a/configure.ac +++ b/configure.ac @@ -15,11 +15,11 @@ dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. -define(RELEASE_NUM, 71) -define(CDIO_VERSION_STR, 0.$1) +define(RELEASE_NUM, 72) +define(CDIO_VERSION_STR, 0.$1cvs) AC_PREREQ(2.52) -AC_REVISION([$Id: configure.ac,v 1.114 2004/11/16 00:12:24 nboullis Exp $])dnl +AC_REVISION([$Id: configure.ac,v 1.115 2004/11/21 22:32:03 rocky Exp $])dnl AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM)) AC_CONFIG_SRCDIR(src/cd-info.c) AM_INIT_AUTOMAKE diff --git a/include/cdio/iso9660.h b/include/cdio/iso9660.h index 23faa3d9..a86c70cf 100644 --- a/include/cdio/iso9660.h +++ b/include/cdio/iso9660.h @@ -1,5 +1,5 @@ /* - $Id: iso9660.h,v 1.54 2004/10/28 00:03:17 rocky Exp $ + $Id: iso9660.h,v 1.55 2004/11/21 22:32:03 rocky Exp $ Copyright (C) 2000 Herbert Valerio Riedel Copyright (C) 2003, 2004 Rocky Bernstein @@ -479,7 +479,7 @@ int iso9660_name_translate(const char *psz_oldname, char *psz_newname); The length of the translated string is returned. */ -int iso9660_name_translate_ext(const char *old, char *new, +int iso9660_name_translate_ext(const char *psz_old, char *psz_new, uint8_t i_joliet_level); /*! diff --git a/lib/iso9660.c b/lib/iso9660.c index a99b00d9..5d7abeb0 100644 --- a/lib/iso9660.c +++ b/lib/iso9660.c @@ -1,5 +1,5 @@ /* - $Id: iso9660.c,v 1.24 2004/10/30 02:55:17 rocky Exp $ + $Id: iso9660.c,v 1.25 2004/11/21 22:32:03 rocky Exp $ Copyright (C) 2000 Herbert Valerio Riedel Copyright (C) 2003, 2004 Rocky Bernstein @@ -37,7 +37,7 @@ #include #endif -static const char _rcsid[] = "$Id: iso9660.c,v 1.24 2004/10/30 02:55:17 rocky Exp $"; +static const char _rcsid[] = "$Id: iso9660.c,v 1.25 2004/11/21 22:32:03 rocky Exp $"; /* some parameters... */ #define SYSTEM_ID "CD-RTOS CD-BRIDGE" @@ -192,9 +192,9 @@ iso9660_set_ltime (const struct tm *_tm, /*out*/ iso9660_ltime_t *pvd_date) The length of the translated string is returned. */ int -iso9660_name_translate(const char *old, char *new) +iso9660_name_translate(const char *psz_old, char *psz_new) { - return iso9660_name_translate_ext(old, new, 0); + return iso9660_name_translate_ext(psz_old, psz_new, 0); } /*!