From 8deec6fcc91345dab74032bef94ca72fbbdd876f Mon Sep 17 00:00:00 2001 From: karl Date: Tue, 22 Apr 2008 15:29:11 +0000 Subject: [PATCH] gplv3+ --- lib/driver/_cdio_generic.c | 28 +++++++++++++--------------- lib/driver/_cdio_stdio.c | 29 ++++++++++++++--------------- lib/driver/_cdio_stdio.h | 27 +++++++++++++-------------- lib/driver/_cdio_stream.c | 29 ++++++++++++++--------------- lib/driver/_cdio_stream.h | 28 +++++++++++++--------------- lib/driver/aix.c | 28 +++++++++++++--------------- lib/driver/audio.c | 25 ++++++++++++------------- lib/driver/bsdi.c | 29 ++++++++++++++--------------- lib/driver/cd_types.c | 26 ++++++++++++-------------- lib/driver/cdio.c | 29 ++++++++++++++--------------- lib/driver/cdio_assert.h | 26 +++++++++++++------------- lib/driver/cdio_private.h | 25 ++++++++++++------------- lib/driver/cdtext.c | 29 ++++++++++++++--------------- lib/driver/cdtext_private.h | 25 ++++++++++++------------- lib/driver/device.c | 25 ++++++++++++------------- lib/driver/disc.c | 27 +++++++++++++-------------- lib/driver/ds.c | 29 ++++++++++++++--------------- lib/driver/generic.h | 25 ++++++++++++------------- lib/driver/gnu_linux.c | 31 +++++++++++++++---------------- lib/driver/image.h | 25 ++++++++++++------------- lib/driver/image_common.c | 25 ++++++++++++------------- lib/driver/image_common.h | 25 ++++++++++++------------- lib/driver/logging.c | 29 ++++++++++++++--------------- lib/driver/mmc.c | 27 +++++++++++++-------------- lib/driver/mmc_private.h | 27 +++++++++++++-------------- lib/driver/netbsd.c | 26 ++++++++++++++------------ lib/driver/osx.c | 34 ++++++++++++++++------------------ lib/driver/portable.h | 25 ++++++++++++------------- lib/driver/read.c | 25 ++++++++++++------------- lib/driver/solaris.c | 30 ++++++++++++++---------------- lib/driver/track.c | 27 +++++++++++++-------------- lib/driver/utf8.c | 26 +++++++++++++------------- lib/driver/util.c | 29 ++++++++++++++--------------- 33 files changed, 433 insertions(+), 467 deletions(-) diff --git a/lib/driver/_cdio_generic.c b/lib/driver/_cdio_generic.c index 5b2fc956..1508c736 100644 --- a/lib/driver/_cdio_generic.c +++ b/lib/driver/_cdio_generic.c @@ -1,22 +1,20 @@ /* - $Id: _cdio_generic.c,v 1.26 2007/08/04 21:40:46 rocky Exp $ + $Id: _cdio_generic.c,v 1.27 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2004, 2005, 2006, 2007 - Rocky Bernstein + Copyright (C) 2004, 2005, 2006, 2007, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* This file contains generic implementations of device-driver routines. @@ -26,7 +24,7 @@ # include "config.h" #endif -static const char _rcsid[] = "$Id: _cdio_generic.c,v 1.26 2007/08/04 21:40:46 rocky Exp $"; +static const char _rcsid[] = "$Id: _cdio_generic.c,v 1.27 2008/04/22 15:29:11 karl Exp $"; #include #include diff --git a/lib/driver/_cdio_stdio.c b/lib/driver/_cdio_stdio.c index add3ea07..fec8538e 100644 --- a/lib/driver/_cdio_stdio.c +++ b/lib/driver/_cdio_stdio.c @@ -1,22 +1,21 @@ /* - $Id: _cdio_stdio.c,v 1.5 2006/02/27 10:29:20 flameeyes Exp $ + $Id: _cdio_stdio.c,v 1.6 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003, 2004, 2005 Rocky Bernstein + Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -39,7 +38,7 @@ #include "_cdio_stream.h" #include "_cdio_stdio.h" -static const char _rcsid[] = "$Id: _cdio_stdio.c,v 1.5 2006/02/27 10:29:20 flameeyes Exp $"; +static const char _rcsid[] = "$Id: _cdio_stdio.c,v 1.6 2008/04/22 15:29:11 karl Exp $"; #define CDIO_STDIO_BUFSIZE (128*1024) diff --git a/lib/driver/_cdio_stdio.h b/lib/driver/_cdio_stdio.h index 47374959..a2cd4c02 100644 --- a/lib/driver/_cdio_stdio.h +++ b/lib/driver/_cdio_stdio.h @@ -1,22 +1,21 @@ /* - $Id: _cdio_stdio.h,v 1.2 2005/01/20 01:00:52 rocky Exp $ + $Id: _cdio_stdio.h,v 1.3 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003 Rocky Bernstein + Copyright (C) 2003, 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ diff --git a/lib/driver/_cdio_stream.c b/lib/driver/_cdio_stream.c index f6e0233f..149e30bb 100644 --- a/lib/driver/_cdio_stream.c +++ b/lib/driver/_cdio_stream.c @@ -1,22 +1,21 @@ /* - $Id: _cdio_stream.c,v 1.8 2006/04/15 03:05:14 rocky Exp $ + $Id: _cdio_stream.c,v 1.9 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2000, 2004, 2005 Herbert Valerio Riedel - Copyright (C) 2005, 2006 Rocky Bernstein + Copyright (C) 2005, 2006, 2008 Rocky Bernstein + Copyright (C) 2000, 2004, 2005 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -35,7 +34,7 @@ #include #include "_cdio_stream.h" -static const char _rcsid[] = "$Id: _cdio_stream.c,v 1.8 2006/04/15 03:05:14 rocky Exp $"; +static const char _rcsid[] = "$Id: _cdio_stream.c,v 1.9 2008/04/22 15:29:11 karl Exp $"; /* * DataSource implementations diff --git a/lib/driver/_cdio_stream.h b/lib/driver/_cdio_stream.h index aa58b7c4..7147a0b9 100644 --- a/lib/driver/_cdio_stream.h +++ b/lib/driver/_cdio_stream.h @@ -1,23 +1,21 @@ /* - $Id: _cdio_stream.h,v 1.4 2006/04/15 03:05:14 rocky Exp $ + $Id: _cdio_stream.h,v 1.5 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein - + Copyright (C) 2003, 2004, 2005, 2006, 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ diff --git a/lib/driver/aix.c b/lib/driver/aix.c index 49fe0896..387f9354 100644 --- a/lib/driver/aix.c +++ b/lib/driver/aix.c @@ -1,22 +1,20 @@ /* - $Id: aix.c,v 1.2 2006/03/17 19:06:51 rocky Exp $ + $Id: aix.c,v 1.3 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2004, 2005, 2006 Rocky Bernstein + Copyright (C) 2004, 2005, 2006, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA. + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -38,7 +36,7 @@ #ifdef HAVE_AIX_CDROM -static const char _rcsid[] = "$Id: aix.c,v 1.2 2006/03/17 19:06:51 rocky Exp $"; +static const char _rcsid[] = "$Id: aix.c,v 1.3 2008/04/22 15:29:11 karl Exp $"; #ifdef HAVE_GLOB_H #include diff --git a/lib/driver/audio.c b/lib/driver/audio.c index 249b8019..d8b19a12 100644 --- a/lib/driver/audio.c +++ b/lib/driver/audio.c @@ -1,21 +1,20 @@ /* - $Id: audio.c,v 1.8 2005/03/14 02:02:49 rocky Exp $ + $Id: audio.c,v 1.9 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /*! Audio (via line output) related routines. */ diff --git a/lib/driver/bsdi.c b/lib/driver/bsdi.c index 21fb81fe..cf06ceda 100644 --- a/lib/driver/bsdi.c +++ b/lib/driver/bsdi.c @@ -1,22 +1,21 @@ /* - $Id: bsdi.c,v 1.14 2006/02/18 19:36:07 rocky Exp $ + $Id: bsdi.c,v 1.15 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2001 Herbert Valerio Riedel - Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein + Copyright (C) 2002, 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2001 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* This file contains BSDI-specific code and implements low-level @@ -27,7 +26,7 @@ # include "config.h" #endif -static const char _rcsid[] = "$Id: bsdi.c,v 1.14 2006/02/18 19:36:07 rocky Exp $"; +static const char _rcsid[] = "$Id: bsdi.c,v 1.15 2008/04/22 15:29:11 karl Exp $"; #include #include diff --git a/lib/driver/cd_types.c b/lib/driver/cd_types.c index 5be9704f..e20d87b0 100644 --- a/lib/driver/cd_types.c +++ b/lib/driver/cd_types.c @@ -1,22 +1,20 @@ /* - $Id: cd_types.c,v 1.7 2006/03/28 03:26:16 rocky Exp $ + $Id: cd_types.c,v 1.8 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein - + Copyright (C) 2003, 2004, 2005, 2006, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* This tries to determine what kind of CD-image or filesystems on a diff --git a/lib/driver/cdio.c b/lib/driver/cdio.c index 55dac6b2..f56bef29 100644 --- a/lib/driver/cdio.c +++ b/lib/driver/cdio.c @@ -1,22 +1,21 @@ /* - $Id: cdio.c,v 1.13 2005/02/03 07:35:15 rocky Exp $ + $Id: cdio.c,v 1.14 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2003, 2004, 2005 Rocky Bernstein - Copyright (C) 2001 Herbert Valerio Riedel + Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2001 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ @@ -35,7 +34,7 @@ #include #include "cdio_private.h" -static const char _rcsid[] = "$Id: cdio.c,v 1.13 2005/02/03 07:35:15 rocky Exp $"; +static const char _rcsid[] = "$Id: cdio.c,v 1.14 2008/04/22 15:29:11 karl Exp $"; /*! diff --git a/lib/driver/cdio_assert.h b/lib/driver/cdio_assert.h index 8c770176..d3e8afa5 100644 --- a/lib/driver/cdio_assert.h +++ b/lib/driver/cdio_assert.h @@ -1,21 +1,21 @@ /* - $Id: cdio_assert.h,v 1.1 2004/12/18 17:29:32 rocky Exp $ + $Id: cdio_assert.h,v 1.2 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel + Copyright (C) 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifndef __CDIO_ASSERT_H__ diff --git a/lib/driver/cdio_private.h b/lib/driver/cdio_private.h index 42f28a32..0bad5a0e 100644 --- a/lib/driver/cdio_private.h +++ b/lib/driver/cdio_private.h @@ -1,21 +1,20 @@ /* - $Id: cdio_private.h,v 1.36 2008/03/28 01:28:50 rocky Exp $ + $Id: cdio_private.h,v 1.37 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* Internal routines for CD I/O drivers. */ diff --git a/lib/driver/cdtext.c b/lib/driver/cdtext.c index c6de8219..0ea8d1bb 100644 --- a/lib/driver/cdtext.c +++ b/lib/driver/cdtext.c @@ -1,23 +1,22 @@ /* - $Id: cdtext.c,v 1.5 2005/04/25 23:06:21 rocky Exp $ + $Id: cdtext.c,v 1.6 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2004, 2005 Rocky Bernstein - toc reading routine adapted from cuetools - Copyright (C) 2003 Svend Sanjay Sorensen + Copyright (C) 2004, 2005, 2008 Rocky Bernstein + toc reading routine adapted from cuetools + Copyright (C) 2003 Svend Sanjay Sorensen - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H diff --git a/lib/driver/cdtext_private.h b/lib/driver/cdtext_private.h index 6999411a..56b0e626 100644 --- a/lib/driver/cdtext_private.h +++ b/lib/driver/cdtext_private.h @@ -1,21 +1,20 @@ /* - $Id: cdtext_private.h,v 1.2 2005/03/23 11:15:25 rocky Exp $ + $Id: cdtext_private.h,v 1.3 2008/04/22 15:29:11 karl Exp $ - Copyright (C) 2004, 2005 Rocky Bernstein + Copyright (C) 2004, 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifndef __CDIO_CDTEXT_PRIVATE_H__ diff --git a/lib/driver/device.c b/lib/driver/device.c index fbcade0d..c0910348 100644 --- a/lib/driver/device.c +++ b/lib/driver/device.c @@ -1,21 +1,20 @@ /* - $Id: device.c,v 1.40 2008/03/27 17:40:50 rocky Exp $ + $Id: device.c,v 1.41 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2005, 2006 Rocky Bernstein + Copyright (C) 2005, 2006, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /*! device- and driver-related routines. */ diff --git a/lib/driver/disc.c b/lib/driver/disc.c index 72dceb1e..11d7288a 100644 --- a/lib/driver/disc.c +++ b/lib/driver/disc.c @@ -1,22 +1,21 @@ /* - $Id: disc.c,v 1.5 2005/02/05 14:42:28 rocky Exp $ + $Id: disc.c,v 1.6 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2003, 2004, 2005 Rocky Bernstein - Copyright (C) 2001 Herbert Valerio Riedel + Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2001 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ diff --git a/lib/driver/ds.c b/lib/driver/ds.c index 4f36b588..77d390f7 100644 --- a/lib/driver/ds.c +++ b/lib/driver/ds.c @@ -1,22 +1,21 @@ /* - $Id: ds.c,v 1.3 2005/02/03 07:35:15 rocky Exp $ + $Id: ds.c,v 1.4 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -31,7 +30,7 @@ #include #include "cdio_assert.h" -static const char _rcsid[] = "$Id: ds.c,v 1.3 2005/02/03 07:35:15 rocky Exp $"; +static const char _rcsid[] = "$Id: ds.c,v 1.4 2008/04/22 15:29:12 karl Exp $"; struct _CdioList { diff --git a/lib/driver/generic.h b/lib/driver/generic.h index fb104935..595d3c1b 100644 --- a/lib/driver/generic.h +++ b/lib/driver/generic.h @@ -1,21 +1,20 @@ /* - $Id: generic.h,v 1.15 2006/01/23 20:48:11 rocky Exp $ + $Id: generic.h,v 1.16 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2004, 2005, 2006 Rocky Bernstein + Copyright (C) 2004, 2005, 2006, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* Internal routines for CD I/O drivers. */ diff --git a/lib/driver/gnu_linux.c b/lib/driver/gnu_linux.c index cd93e8b4..5006bd5e 100644 --- a/lib/driver/gnu_linux.c +++ b/lib/driver/gnu_linux.c @@ -1,23 +1,22 @@ /* - $Id: gnu_linux.c,v 1.29 2008/03/28 02:03:13 rocky Exp $ + $Id: gnu_linux.c,v 1.30 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2001 Herbert Valerio Riedel - Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008 Rocky Bernstein - + Copyright (C) 2001 Herbert Valerio Riedel + Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008 + Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* This file contains Linux-specific code and implements low-level @@ -28,7 +27,7 @@ # include "config.h" #endif -static const char _rcsid[] = "$Id: gnu_linux.c,v 1.29 2008/03/28 02:03:13 rocky Exp $"; +static const char _rcsid[] = "$Id: gnu_linux.c,v 1.30 2008/04/22 15:29:12 karl Exp $"; #ifdef HAVE_STRING_H #include diff --git a/lib/driver/image.h b/lib/driver/image.h index 582f3353..acdb96ba 100644 --- a/lib/driver/image.h +++ b/lib/driver/image.h @@ -1,21 +1,20 @@ /* - $Id: image.h,v 1.8 2008/03/16 00:12:43 rocky Exp $ + $Id: image.h,v 1.9 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2004, 2005 Rocky Bernstein + Copyright (C) 2004, 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /*! diff --git a/lib/driver/image_common.c b/lib/driver/image_common.c index 81ac40c9..301b08dc 100644 --- a/lib/driver/image_common.c +++ b/lib/driver/image_common.c @@ -1,21 +1,20 @@ /* - $Id: image_common.c,v 1.14 2008/03/20 01:40:29 edsdead Exp $ + $Id: image_common.c,v 1.15 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2004, 2005 Rocky Bernstein + Copyright (C) 2004, 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /*! Common image routines. diff --git a/lib/driver/image_common.h b/lib/driver/image_common.h index e332f983..f7949817 100644 --- a/lib/driver/image_common.h +++ b/lib/driver/image_common.h @@ -1,21 +1,20 @@ /* - $Id: image_common.h,v 1.12 2008/03/20 01:40:29 edsdead Exp $ + $Id: image_common.h,v 1.13 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2004, 2005 Rocky Bernstein + Copyright (C) 2004, 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /*! Common image routines. diff --git a/lib/driver/logging.c b/lib/driver/logging.c index d40894f3..5a4a7b38 100644 --- a/lib/driver/logging.c +++ b/lib/driver/logging.c @@ -1,22 +1,21 @@ /* - $Id: logging.c,v 1.1 2004/12/18 17:29:32 rocky Exp $ + $Id: logging.c,v 1.2 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003, 2004 Rocky Bernstein + Copyright (C) 2003, 2004, 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -31,7 +30,7 @@ #include "cdio_assert.h" #include "portable.h" -static const char _rcsid[] = "$Id: logging.c,v 1.1 2004/12/18 17:29:32 rocky Exp $"; +static const char _rcsid[] = "$Id: logging.c,v 1.2 2008/04/22 15:29:12 karl Exp $"; cdio_log_level_t cdio_loglevel_default = CDIO_LOG_WARN; diff --git a/lib/driver/mmc.c b/lib/driver/mmc.c index 5e5a8f08..ec0af808 100644 --- a/lib/driver/mmc.c +++ b/lib/driver/mmc.c @@ -1,22 +1,21 @@ -/* Common Multimedia Command (MMC) routines. +/* Common Multimedia Command (MMC) routines. - $Id: mmc.c,v 1.37 2008/03/04 10:27:54 rocky Exp $ + $Id: mmc.c,v 1.38 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2004, 2005, 2006, 2007, 2008 Rocky Bernstein + Copyright (C) 2004, 2005, 2006, 2007, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H diff --git a/lib/driver/mmc_private.h b/lib/driver/mmc_private.h index eb9b16f1..d06d2387 100644 --- a/lib/driver/mmc_private.h +++ b/lib/driver/mmc_private.h @@ -1,22 +1,21 @@ -/* private MMC helper routines. +/* private MMC helper routines. - $Id: mmc_private.h,v 1.11 2006/10/11 12:38:18 rocky Exp $ + $Id: mmc_private.h,v 1.12 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2004, 2005, 2006 Rocky Bernstein + Copyright (C) 2004, 2005, 2006, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #include diff --git a/lib/driver/netbsd.c b/lib/driver/netbsd.c index ec5e9541..555038b6 100644 --- a/lib/driver/netbsd.c +++ b/lib/driver/netbsd.c @@ -1,18 +1,20 @@ -/* $Id: netbsd.c,v 1.3 2008/03/28 02:03:13 rocky Exp $ */ -/* Copyright (C) 2008 Rocky Bernstein +/* + $Id: netbsd.c,v 1.4 2008/04/22 15:29:12 karl Exp $ + + Copyright (C) 2008 Rocky Bernstein - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program. If not, see . + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* Changes up to version 0.76 */ diff --git a/lib/driver/osx.c b/lib/driver/osx.c index daf34628..415e39f0 100644 --- a/lib/driver/osx.c +++ b/lib/driver/osx.c @@ -1,30 +1,28 @@ /* - $Id: osx.c,v 1.11 2007/08/11 12:28:25 flameeyes Exp $ + $Id: osx.c,v 1.12 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2003, 2004, 2005, 2006 Rocky Bernstein - - from vcdimager code: - Copyright (C) 2001 Herbert Valerio Riedel - and VideoLAN code Copyright (C) 1998-2001 VideoLAN + Copyright (C) 2003, 2004, 2005, 2006, 2008 Rocky Bernstein + from vcdimager code: + Copyright (C) 2001 Herbert Valerio Riedel + and VideoLAN code Copyright (C) 1998-2001 VideoLAN Authors: Johan Bilien Gildas Bazin Jon Lech Johansen Derk-Jan Hartman Justin F. Hallett - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* This file contains OSX-specific code and implements low-level @@ -35,7 +33,7 @@ #include "config.h" #endif -static const char _rcsid[] = "$Id: osx.c,v 1.11 2007/08/11 12:28:25 flameeyes Exp $"; +static const char _rcsid[] = "$Id: osx.c,v 1.12 2008/04/22 15:29:12 karl Exp $"; #include #include diff --git a/lib/driver/portable.h b/lib/driver/portable.h index d1634256..f8d0ceab 100644 --- a/lib/driver/portable.h +++ b/lib/driver/portable.h @@ -1,21 +1,20 @@ /* - $Id: portable.h,v 1.3 2006/02/27 09:48:55 flameeyes Exp $ + $Id: portable.h,v 1.4 2008/04/22 15:29:12 karl Exp $ - Copyright (C) Rocky Bernstein + Copyright (C) 2006, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* diff --git a/lib/driver/read.c b/lib/driver/read.c index 4aaedbc6..361c2b46 100644 --- a/lib/driver/read.c +++ b/lib/driver/read.c @@ -1,21 +1,20 @@ /* - $Id: read.c,v 1.11 2007/02/25 15:58:31 rocky Exp $ + $Id: read.c,v 1.12 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /** \file read.h * diff --git a/lib/driver/solaris.c b/lib/driver/solaris.c index be6692d6..6ff40db0 100644 --- a/lib/driver/solaris.c +++ b/lib/driver/solaris.c @@ -1,23 +1,21 @@ /* - $Id: solaris.c,v 1.11 2006/03/17 19:06:51 rocky Exp $ + $Id: solaris.c,v 1.12 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2001 Herbert Valerio Riedel - Copyright (C) 2002, 2003, 2004, 2005, 2006 - Rocky Bernstein + Copyright (C) 2002, 2003, 2004, 2005, 2006 Rocky Bernstein + Copyright (C) 2001 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -39,7 +37,7 @@ #ifdef HAVE_SOLARIS_CDROM -static const char _rcsid[] = "$Id: solaris.c,v 1.11 2006/03/17 19:06:51 rocky Exp $"; +static const char _rcsid[] = "$Id: solaris.c,v 1.12 2008/04/22 15:29:12 karl Exp $"; #ifdef HAVE_GLOB_H #include diff --git a/lib/driver/track.c b/lib/driver/track.c index f9daa576..96dd9b2d 100644 --- a/lib/driver/track.c +++ b/lib/driver/track.c @@ -1,22 +1,21 @@ /* - $Id: track.c,v 1.6 2008/03/20 01:40:29 edsdead Exp $ + $Id: track.c,v 1.7 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2003, 2004, 2005 Rocky Bernstein - Copyright (C) 2001 Herbert Valerio Riedel + Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2001 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /*! Track-related routines. */ diff --git a/lib/driver/utf8.c b/lib/driver/utf8.c index bc26b82c..6b7d3703 100644 --- a/lib/driver/utf8.c +++ b/lib/driver/utf8.c @@ -1,20 +1,20 @@ /* - Copyright (C) 2006 Burkhard Plaum + $Id: utf8.c,v 1.5 2008/04/22 15:29:12 karl Exp $ - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 2006, 2008 Burkhard Plaum - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ /* UTF-8 support */ diff --git a/lib/driver/util.c b/lib/driver/util.c index c1525b1e..629057a6 100644 --- a/lib/driver/util.c +++ b/lib/driver/util.c @@ -1,22 +1,21 @@ /* - $Id: util.c,v 1.5 2006/11/28 12:14:16 gmerlin Exp $ + $Id: util.c,v 1.6 2008/04/22 15:29:12 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003, 2004, 2005 Rocky Bernstein + Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein + Copyright (C) 2000 Herbert Valerio Riedel - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifdef HAVE_CONFIG_H @@ -41,7 +40,7 @@ #include #include -static const char _rcsid[] = "$Id: util.c,v 1.5 2006/11/28 12:14:16 gmerlin Exp $"; +static const char _rcsid[] = "$Id: util.c,v 1.6 2008/04/22 15:29:12 karl Exp $"; size_t _cdio_strlenv(char **str_array)