configure.ac: in 72cvs now.
iso9660.{c,h}: "new" is a reserved word in C++. Don't use it as a
parameter name
This commit is contained in:
5
NEWS
5
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 $
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 <hvr@gnu.org>
|
||||
Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
|
||||
@@ -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);
|
||||
|
||||
/*!
|
||||
|
||||
@@ -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 <hvr@gnu.org>
|
||||
Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
|
||||
@@ -37,7 +37,7 @@
|
||||
#include <stdio.h>
|
||||
#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);
|
||||
}
|
||||
|
||||
/*!
|
||||
|
||||
Reference in New Issue
Block a user