From 2d054607807ccce83b892eeb48a2c154a900e077 Mon Sep 17 00:00:00 2001 From: karl Date: Fri, 18 Apr 2008 16:02:09 +0000 Subject: [PATCH] gplv3+ --- lib/iso9660/iso9660.c | 30 +++++++++++++++--------------- lib/iso9660/iso9660_fs.c | 30 ++++++++++++++---------------- lib/iso9660/iso9660_private.h | 33 ++++++++++++++++----------------- lib/iso9660/rock.c | 17 ++++++++--------- lib/iso9660/xa.c | 27 +++++++++++++-------------- lib/udf/filemode.c | 31 +++++++++++++++++-------------- lib/udf/udf.c | 25 ++++++++++++------------- lib/udf/udf_file.c | 25 ++++++++++++------------- lib/udf/udf_fs.c | 25 ++++++++++++------------- lib/udf/udf_fs.h | 25 ++++++++++++------------- lib/udf/udf_private.h | 25 ++++++++++++------------- lib/udf/udf_time.c | 31 ++++++++++++++++--------------- 12 files changed, 159 insertions(+), 165 deletions(-) diff --git a/lib/iso9660/iso9660.c b/lib/iso9660/iso9660.c index 5a9f4a2e..8fd62741 100644 --- a/lib/iso9660/iso9660.c +++ b/lib/iso9660/iso9660.c @@ -1,22 +1,22 @@ /* - $Id: iso9660.c,v 1.34 2007/11/16 22:50:21 flameeyes Exp $ + $Id: iso9660.c,v 1.35 2008/04/18 16:02:09 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003, 2004, 2005, 2006, 2007 Rocky Bernstein + Copyright (C) 2003, 2004, 2005, 2006, 2007, 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 . */ /*! String inside frame which identifies an ISO 9660 filesystem. This @@ -57,7 +57,7 @@ const char ISO_STANDARD_ID[] = {'C', 'D', '0', '0', '1'}; #include #endif -static const char _rcsid[] = "$Id: iso9660.c,v 1.34 2007/11/16 22:50:21 flameeyes Exp $"; +static const char _rcsid[] = "$Id: iso9660.c,v 1.35 2008/04/18 16:02:09 karl Exp $"; /* Variables to hold debugger-helping enumerations */ enum iso_enum1_s iso_enums1; diff --git a/lib/iso9660/iso9660_fs.c b/lib/iso9660/iso9660_fs.c index 234cba76..e2fb54b4 100644 --- a/lib/iso9660/iso9660_fs.c +++ b/lib/iso9660/iso9660_fs.c @@ -1,24 +1,22 @@ /* - $Id: iso9660_fs.c,v 1.46 2008/02/08 08:53:33 rocky Exp $ + $Id: iso9660_fs.c,v 1.47 2008/04/18 16:02:09 karl Exp $ - Copyright (C) 2001 Herbert Valerio Riedel - Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 + Copyright (C) 2003, 2004, 2005, 2006, 2007, 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., 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 . */ /* iso9660 filesystem-based routines */ @@ -51,7 +49,7 @@ #include -static const char _rcsid[] = "$Id: iso9660_fs.c,v 1.46 2008/02/08 08:53:33 rocky Exp $"; +static const char _rcsid[] = "$Id: iso9660_fs.c,v 1.47 2008/04/18 16:02:09 karl Exp $"; /* Implementation of iso9660_t type */ struct _iso9660_s { diff --git a/lib/iso9660/iso9660_private.h b/lib/iso9660/iso9660_private.h index bbb367c8..79b368ac 100644 --- a/lib/iso9660/iso9660_private.h +++ b/lib/iso9660/iso9660_private.h @@ -1,27 +1,26 @@ /* - $Id: iso9660_private.h,v 1.4 2005/11/06 00:39:37 rocky Exp $ + $Id: iso9660_private.h,v 1.5 2008/04/18 16:02:09 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 - See also iso9660.h by Eric Youngdale (1993). + See also iso9660.h by Eric Youngdale (1993). - Copyright 1993 Yggdrasil Computing, Incorporated - Copyright (c) 1999,2000 J. Schilling + Copyright 1993 Yggdrasil Computing, Incorporated + Copyright (c) 1999,2000 J. Schilling - 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_ISO9660_PRIVATE_H__ diff --git a/lib/iso9660/rock.c b/lib/iso9660/rock.c index 57b29ce4..415d836a 100644 --- a/lib/iso9660/rock.c +++ b/lib/iso9660/rock.c @@ -1,23 +1,22 @@ /* - $Id: rock.c,v 1.17 2006/03/17 22:36:31 rocky Exp $ + $Id: rock.c,v 1.18 2008/04/18 16:02:09 karl Exp $ - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein Adapted from GNU/Linux fs/isofs/rock.c (C) 1992, 1993 Eric Youngdale - This program is free software; you can redistribute it and/or modify + 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 + 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. - + 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 - */ + along with this program. If not, see . +*/ /* Rock Ridge Extensions to iso9660 */ diff --git a/lib/iso9660/xa.c b/lib/iso9660/xa.c index d683006a..b9493ffd 100644 --- a/lib/iso9660/xa.c +++ b/lib/iso9660/xa.c @@ -1,22 +1,21 @@ /* - $Id: xa.c,v 1.6 2006/01/14 09:48:42 rocky Exp $ + $Id: xa.c,v 1.7 2008/04/18 16:02:10 karl Exp $ - Copyright (C) 2000 Herbert Valerio Riedel - Copyright (C) 2003, 2005 Rocky Bernstein + Copyright (C) 2003, 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 . */ diff --git a/lib/udf/filemode.c b/lib/udf/filemode.c index 09e89c71..97849785 100644 --- a/lib/udf/filemode.c +++ b/lib/udf/filemode.c @@ -1,20 +1,23 @@ -/* filemode.c -- make a string describing file modes - Copyright (C) 2005 Rocky Bernstein - Copyright (C) 1985, 1990, 1993, 1998-2000 Free Software Foundation, Inc. +/* + $Id: filemode.c,v 1.4 2008/04/18 16:02:10 karl Exp $ + filemode.c -- make a string describing file modes - 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, or (at your option) - any later version. + Copyright (C) 2005, 2008 Rocky Bernstein + Copyright (C) 1985, 1990, 1993, 1998-2000 Free Software Foundation, Inc. - 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 . +*/ #if HAVE_CONFIG_H # include diff --git a/lib/udf/udf.c b/lib/udf/udf.c index 23953dd8..9de137bb 100644 --- a/lib/udf/udf.c +++ b/lib/udf/udf.c @@ -1,21 +1,20 @@ /* - $Id: udf.c,v 1.11 2006/04/17 03:32:38 rocky Exp $ + $Id: udf.c,v 1.12 2008/04/18 16:02:10 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 . */ /* Access routines */ diff --git a/lib/udf/udf_file.c b/lib/udf/udf_file.c index 08aea7c6..7afe1b42 100644 --- a/lib/udf/udf_file.c +++ b/lib/udf/udf_file.c @@ -1,21 +1,20 @@ /* - $Id: udf_file.c,v 1.13 2006/06/03 00:05:57 rocky Exp $ + $Id: udf_file.c,v 1.14 2008/04/18 16:02:10 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 . */ /* Access routines */ diff --git a/lib/udf/udf_fs.c b/lib/udf/udf_fs.c index a0ebc479..48770fd9 100644 --- a/lib/udf/udf_fs.c +++ b/lib/udf/udf_fs.c @@ -1,21 +1,20 @@ /* - $Id: udf_fs.c,v 1.21 2006/04/28 16:38:23 rocky Exp $ + $Id: udf_fs.c,v 1.22 2008/04/18 16:02:10 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 . */ /* * Portions copyright (c) 2001, 2002 Scott Long diff --git a/lib/udf/udf_fs.h b/lib/udf/udf_fs.h index 7ac05a2e..80e99554 100644 --- a/lib/udf/udf_fs.h +++ b/lib/udf/udf_fs.h @@ -1,21 +1,20 @@ /* - $Id: udf_fs.h,v 1.2 2006/04/17 03:32:38 rocky Exp $ + $Id: udf_fs.h,v 1.3 2008/04/18 16:02:10 karl Exp $ - Copyright (C) 2006 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 . */ #ifndef __CDIO_UDF_FS_H__ diff --git a/lib/udf/udf_private.h b/lib/udf/udf_private.h index b89a48b3..dadca00a 100644 --- a/lib/udf/udf_private.h +++ b/lib/udf/udf_private.h @@ -1,21 +1,20 @@ /* - $Id: udf_private.h,v 1.11 2006/04/17 03:32:38 rocky Exp $ + $Id: udf_private.h,v 1.12 2008/04/18 16:02:10 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 . */ #ifndef __CDIO_UDF_PRIVATE_H__ diff --git a/lib/udf/udf_time.c b/lib/udf/udf_time.c index b0c8d263..6ee98474 100644 --- a/lib/udf/udf_time.c +++ b/lib/udf/udf_time.c @@ -1,23 +1,24 @@ /* - Copyright (C) 2005 Rocky Bernstein - Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. + $Id: udf_time.c,v 1.9 2008/04/18 16:02:10 karl Exp $ - Modified From part of the GNU C Library. - Contributed by Paul Eggert (eggert@twinsun.com). + Copyright (C) 2005, 2008 Rocky Bernstein + Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. - 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. + Modified From part of the GNU C Library. + Contributed by Paul Eggert. - 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 . */ /* Some history from the GNU/Linux kernel from which this is also taken...