From f4b5e8fb92eaf41be1f29bfb5d5366e913ba1c6d Mon Sep 17 00:00:00 2001 From: szaka Date: Sun, 29 Jun 2008 23:08:55 +0000 Subject: [PATCH] copyright update --- include/ntfs-3g/attrib.h | 2 +- include/ntfs-3g/dir.h | 3 ++- include/ntfs-3g/index.h | 2 +- include/ntfs-3g/inode.h | 6 +++--- include/ntfs-3g/logging.h | 3 ++- include/ntfs-3g/mft.h | 2 +- libntfs-3g/attrib.c | 5 +++-- libntfs-3g/bitmap.c | 2 +- libntfs-3g/bootsect.c | 2 +- libntfs-3g/dir.c | 4 ++-- libntfs-3g/inode.c | 4 ++-- libntfs-3g/lcnalloc.c | 2 +- libntfs-3g/logging.c | 2 +- libntfs-3g/mft.c | 2 +- libntfs-3g/runlist.c | 2 +- libntfs-3g/unistr.c | 2 +- 16 files changed, 24 insertions(+), 21 deletions(-) diff --git a/include/ntfs-3g/attrib.h b/include/ntfs-3g/attrib.h index 7656bf16..419937c1 100644 --- a/include/ntfs-3g/attrib.h +++ b/include/ntfs-3g/attrib.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2004 Anton Altaparmakov * Copyright (c) 2004-2005 Yura Pakhuchiy - * Copyright (c) 2006 Szabolcs Szakacsits + * Copyright (c) 2006-2007 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/include/ntfs-3g/dir.h b/include/ntfs-3g/dir.h index cbf52683..6d593c5c 100644 --- a/include/ntfs-3g/dir.h +++ b/include/ntfs-3g/dir.h @@ -1,9 +1,10 @@ /* * dir.h - Exports for directory handling. Originated from the Linux-NTFS project. * - * Copyright (c) 2002 Anton Altaparmakov + * Copyright (c) 2002 Anton Altaparmakov * Copyright (c) 2005-2006 Yura Pakhuchiy * Copyright (c) 2004-2005 Richard Russon + * Copyright (c) 2005-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/include/ntfs-3g/index.h b/include/ntfs-3g/index.h index 26fcb1b0..d4c4055b 100644 --- a/include/ntfs-3g/index.h +++ b/include/ntfs-3g/index.h @@ -4,7 +4,7 @@ * Copyright (c) 2004 Anton Altaparmakov * Copyright (c) 2004-2005 Richard Russon * Copyright (c) 2005 Yura Pakhuchiy - * Copyright (c) 2006 Szabolcs Szakacsits + * Copyright (c) 2006-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/include/ntfs-3g/inode.h b/include/ntfs-3g/inode.h index b8c4ec5b..370e02ac 100644 --- a/include/ntfs-3g/inode.h +++ b/include/ntfs-3g/inode.h @@ -1,10 +1,10 @@ /* * inode.h - Defines for NTFS inode handling. Originated from the Linux-NTFS project. * - * Copyright (c) 2001,2002 Anton Altaparmakov - * Copyright (c) 2004-2005 Yura Pakhuchiy + * Copyright (c) 2001-2004 Anton Altaparmakov + * Copyright (c) 2004-2007 Yura Pakhuchiy * Copyright (c) 2004-2005 Richard Russon - * Copyright (c) 2006 Szabolcs Szakacsits + * Copyright (c) 2006-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/include/ntfs-3g/logging.h b/include/ntfs-3g/logging.h index af25dbf1..042ae762 100644 --- a/include/ntfs-3g/logging.h +++ b/include/ntfs-3g/logging.h @@ -1,7 +1,8 @@ /* * logging.h - Centralised logging. Originated from the Linux-NTFS project. * - * Copyright (c) 2005 Richard Russon + * Copyright (c) 2005 Richard Russon + * Copyright (c) 2007-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/include/ntfs-3g/mft.h b/include/ntfs-3g/mft.h index 24e71495..2c739a14 100644 --- a/include/ntfs-3g/mft.h +++ b/include/ntfs-3g/mft.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2002 Anton Altaparmakov * Copyright (c) 2004-2005 Richard Russon - * Copyright (c) 2006 Szabolcs Szakacsits + * Copyright (c) 2006-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/libntfs-3g/attrib.c b/libntfs-3g/attrib.c index a9b7207e..a982988b 100644 --- a/libntfs-3g/attrib.c +++ b/libntfs-3g/attrib.c @@ -3,8 +3,9 @@ * * Copyright (c) 2000-2005 Anton Altaparmakov * Copyright (c) 2002-2005 Richard Russon - * Copyright (c) 2002-2006 Szabolcs Szakacsits - * Copyright (c) 2004-2006 Yura Pakhuchiy + * Copyright (c) 2002-2008 Szabolcs Szakacsits + * Copyright (c) 2004-2007 Yura Pakhuchiy + * Copyright (c) 2007-2008 Jean-Pierre Andre * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/libntfs-3g/bitmap.c b/libntfs-3g/bitmap.c index e2b4f01c..60cd4a89 100644 --- a/libntfs-3g/bitmap.c +++ b/libntfs-3g/bitmap.c @@ -3,7 +3,7 @@ * * Copyright (c) 2002-2006 Anton Altaparmakov * Copyright (c) 2004-2005 Richard Russon - * Copyright (c) 2004-2006 Szabolcs Szakacsits + * Copyright (c) 2004-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/libntfs-3g/bootsect.c b/libntfs-3g/bootsect.c index f3ffb5d1..ae5d60a9 100644 --- a/libntfs-3g/bootsect.c +++ b/libntfs-3g/bootsect.c @@ -2,7 +2,7 @@ * bootsect.c - Boot sector handling code. Originated from the Linux-NTFS project. * * Copyright (c) 2000-2006 Anton Altaparmakov - * Copyright (c) 2003-2006 Szabolcs Szakacsits + * Copyright (c) 2003-2008 Szabolcs Szakacsits * Copyright (c) 2005 Yura Pakhuchiy * * This program/include file is free software; you can redistribute it and/or diff --git a/libntfs-3g/dir.c b/libntfs-3g/dir.c index affcca26..db5c1edd 100644 --- a/libntfs-3g/dir.c +++ b/libntfs-3g/dir.c @@ -3,8 +3,8 @@ * * Copyright (c) 2002-2005 Anton Altaparmakov * Copyright (c) 2004-2005 Richard Russon - * Copyright (c) 2004-2006 Szabolcs Szakacsits - * Copyright (c) 2005-2006 Yura Pakhuchiy + * Copyright (c) 2004-2008 Szabolcs Szakacsits + * Copyright (c) 2005-2007 Yura Pakhuchiy * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/libntfs-3g/inode.c b/libntfs-3g/inode.c index 718ac3ec..b0b900a6 100644 --- a/libntfs-3g/inode.c +++ b/libntfs-3g/inode.c @@ -2,8 +2,8 @@ * inode.c - Inode handling code. Originated from the Linux-NTFS project. * * Copyright (c) 2002-2005 Anton Altaparmakov - * Copyright (c) 2002-2006 Szabolcs Szakacsits - * Copyright (c) 2004-2005 Yura Pakhuchiy + * Copyright (c) 2002-2008 Szabolcs Szakacsits + * Copyright (c) 2004-2007 Yura Pakhuchiy * Copyright (c) 2004-2005 Richard Russon * * This program/include file is free software; you can redistribute it and/or diff --git a/libntfs-3g/lcnalloc.c b/libntfs-3g/lcnalloc.c index fbdda328..6c07ab0d 100644 --- a/libntfs-3g/lcnalloc.c +++ b/libntfs-3g/lcnalloc.c @@ -3,7 +3,7 @@ * * Copyright (c) 2002-2004 Anton Altaparmakov * Copyright (c) 2004 Yura Pakhuchiy - * Copyright (c) 2004-2007 Szabolcs Szakacsits + * Copyright (c) 2004-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/libntfs-3g/logging.c b/libntfs-3g/logging.c index 7e88c8a4..3330fc0d 100644 --- a/libntfs-3g/logging.c +++ b/libntfs-3g/logging.c @@ -2,7 +2,7 @@ * logging.c - Centralised logging. Originated from the Linux-NTFS project. * * Copyright (c) 2005 Richard Russon - * Copyright (c) 2005-2006 Szabolcs Szakacsits + * Copyright (c) 2005-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published diff --git a/libntfs-3g/mft.c b/libntfs-3g/mft.c index 6310bf75..cb199b01 100644 --- a/libntfs-3g/mft.c +++ b/libntfs-3g/mft.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2004 Anton Altaparmakov * Copyright (c) 2004-2005 Richard Russon - * Copyright (c) 2004-2006 Szabolcs Szakacsits + * Copyright (c) 2004-2008 Szabolcs Szakacsits * Copyright (c) 2005 Yura Pakhuchiy * * This program/include file is free software; you can redistribute it and/or diff --git a/libntfs-3g/runlist.c b/libntfs-3g/runlist.c index 40050624..6418c143 100644 --- a/libntfs-3g/runlist.c +++ b/libntfs-3g/runlist.c @@ -3,7 +3,7 @@ * * Copyright (c) 2002-2005 Anton Altaparmakov * Copyright (c) 2002-2005 Richard Russon - * Copyright (c) 2002-2006 Szabolcs Szakacsits + * Copyright (c) 2002-2008 Szabolcs Szakacsits * Copyright (c) 2004 Yura Pakhuchiy * * This program/include file is free software; you can redistribute it and/or diff --git a/libntfs-3g/unistr.c b/libntfs-3g/unistr.c index 5a16633c..fac9ca56 100644 --- a/libntfs-3g/unistr.c +++ b/libntfs-3g/unistr.c @@ -2,7 +2,7 @@ * unistr.c - Unicode string handling. Originated from the Linux-NTFS project. * * Copyright (c) 2000-2004 Anton Altaparmakov - * Copyright (c) 2002-2006 Szabolcs Szakacsits + * Copyright (c) 2002-2008 Szabolcs Szakacsits * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published