From b8d69c67a2ed6b5787db74887202ee161433538b Mon Sep 17 00:00:00 2001 From: rocky Date: Sat, 18 Mar 2006 02:35:06 +0000 Subject: [PATCH] iso9660.h: remove doxygen formatting warning. configure.ac, NEWS: get ready for 0.77 release --- NEWS | 5 +++-- configure.ac | 4 ++-- doc/how-to-make-a-release.txt | 7 ++++--- include/cdio/iso9660.h | 4 ++-- lib/iso9660/iso9660.c | 8 ++++---- 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/NEWS b/NEWS index f35d1448..18624a21 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -$Id: NEWS,v 1.97 2006/03/18 00:53:20 rocky Exp $ +$Id: NEWS,v 1.98 2006/03/18 02:35:06 rocky Exp $ version 0.77cvs ===================================== @@ -31,6 +31,7 @@ version 0.77cvs DragonFly recognized as FreeBSD, MinGW better tolerated, GNU/Linux (and others?) LARGEFILE support + OpenBSD tested (no native CD driver though) - Doxygen formatting improvements. @@ -343,4 +344,4 @@ version 0.1 Routines split off from VCDImager. -$Id: NEWS,v 1.97 2006/03/18 00:53:20 rocky Exp $ +$Id: NEWS,v 1.98 2006/03/18 02:35:06 rocky Exp $ diff --git a/configure.ac b/configure.ac index 488077ba..d17ea983 100644 --- a/configure.ac +++ b/configure.ac @@ -16,10 +16,10 @@ dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA dnl 02110-1301 USA. define(RELEASE_NUM, 77) -define(CDIO_VERSION_STR, 0.$1cvs) +define(CDIO_VERSION_STR, 0.$1) AC_PREREQ(2.52) -AC_REVISION([$Id: configure.ac,v 1.190 2006/03/17 19:36:54 rocky Exp $])dnl +AC_REVISION([$Id: configure.ac,v 1.191 2006/03/18 02:35:07 rocky Exp $])dnl AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM)) AC_CONFIG_SRCDIR(src/cd-info.c) diff --git a/doc/how-to-make-a-release.txt b/doc/how-to-make-a-release.txt index 1125fd18..a090bdad 100644 --- a/doc/how-to-make-a-release.txt +++ b/doc/how-to-make-a-release.txt @@ -13,15 +13,16 @@ ^^^ ... +- make doxygen documentation + cd doc/doxygen; ./run_doxygen + remove any errors. + - Make sure sources are current and checked in: cvs update -dPA . cvs commit . - autogen.sh && make && make check -- make doxygen documentation - cd doc/doxygen; ./run_doxygen - - Tag release in CVS: cvs log -h configure.ac cvs tag release_*0_76* . diff --git a/include/cdio/iso9660.h b/include/cdio/iso9660.h index 2bfea64b..8962e35e 100644 --- a/include/cdio/iso9660.h +++ b/include/cdio/iso9660.h @@ -1,5 +1,5 @@ /* - $Id: iso9660.h,v 1.89 2006/03/14 11:40:05 rocky Exp $ + $Id: iso9660.h,v 1.90 2006/03/18 02:35:07 rocky Exp $ Copyright (C) 2000 Herbert Valerio Riedel Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein @@ -718,7 +718,7 @@ typedef struct _iso9660_s iso9660_t; @return length of the translated string is returned. It will be no greater than the length of psz_oldname. */ - int iso9660_name_translate_ext(const char *psz_old, char *psz_new, + int iso9660_name_translate_ext(const char *psz_oldname, char *psz_newname, uint8_t i_joliet_level); /*! diff --git a/lib/iso9660/iso9660.c b/lib/iso9660/iso9660.c index c20389dd..898e2228 100644 --- a/lib/iso9660/iso9660.c +++ b/lib/iso9660/iso9660.c @@ -1,5 +1,5 @@ /* - $Id: iso9660.c,v 1.24 2006/03/17 22:36:31 rocky Exp $ + $Id: iso9660.c,v 1.25 2006/03/18 02:35:07 rocky Exp $ Copyright (C) 2000 Herbert Valerio Riedel Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein @@ -54,7 +54,7 @@ const char ISO_STANDARD_ID[] = {'C', 'D', '0', '0', '1'}; #include #endif -static const char _rcsid[] = "$Id: iso9660.c,v 1.24 2006/03/17 22:36:31 rocky Exp $"; +static const char _rcsid[] = "$Id: iso9660.c,v 1.25 2006/03/18 02:35:07 rocky Exp $"; /* Variables to hold debugger-helping enumerations */ enum iso_enum1_s iso_enums1; @@ -308,9 +308,9 @@ iso9660_set_ltime (const struct tm *p_tm, /*out*/ iso9660_ltime_t *pvd_date) than the length of psz_oldname. */ int -iso9660_name_translate(const char *psz_old, char *psz_new) +iso9660_name_translate(const char *psz_oldname, char *psz_newname) { - return iso9660_name_translate_ext(psz_old, psz_new, 0); + return iso9660_name_translate_ext(psz_oldname, psz_newname, 0); } /*!