From f33ee8ca5640191e7666402d6676073712b9c988 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 23 Jan 2013 12:25:59 +0100 Subject: [PATCH] Completing and updating all copyright headers for 2013. Signed-off-by: Daniel Baumann --- Makefile | 3 ++- man/dosfsck.8 | 21 +++++++++++++++++++++ man/dosfslabel.8 | 21 +++++++++++++++++++++ man/mkdosfs.8 | 22 +++++++++++++++++++++- src/boot.c | 1 + src/boot.h | 1 + src/check.c | 1 + src/check.h | 1 + src/common.c | 1 + src/common.h | 1 + src/dosfsck.c | 1 + src/dosfsck.h | 1 + src/dosfslabel.c | 1 + src/fat.c | 1 + src/fat.h | 1 + src/file.c | 1 + src/file.h | 1 + src/io.c | 1 + src/io.h | 1 + src/lfn.c | 1 + src/lfn.h | 1 + src/mkdosfs.c | 1 + src/version.h | 1 + 23 files changed, 84 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 353bb9e..4efa2d3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile # -# Copyright (C) 2008 Daniel Baumann +# Copyright (C) 2008-2013 Daniel Baumann # # 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 @@ -18,6 +18,7 @@ # On Debian systems, the complete text of the GNU General Public License # can be found in /usr/share/common-licenses/GPL-3 file. + DESTDIR = PREFIX = /usr/local SBINDIR = $(PREFIX)/sbin diff --git a/man/dosfsck.8 b/man/dosfsck.8 index 43aa114..dc4b498 100644 --- a/man/dosfsck.8 +++ b/man/dosfsck.8 @@ -1,3 +1,24 @@ +.\" dosfsck.8 - manpage for dosfsck +.\" +.\" Copyright (C) 2006-2013 Daniel Baumann +.\" +.\" 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. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program. If not, see . +.\" +.\" On Debian systems, the complete text of the GNU General Public License +.\" can be found in /usr/share/common-licenses/GPL-3 file. +.\" +.\" .TH DOSFSCK 8 "2010\-01\-31" "3.0.9" "check and repair MS\-DOS filesystems" .SH NAME diff --git a/man/dosfslabel.8 b/man/dosfslabel.8 index 6808f77..e217ad6 100644 --- a/man/dosfslabel.8 +++ b/man/dosfslabel.8 @@ -1,3 +1,24 @@ +.\" dosfslabel.8 - manpage for dosfsck +.\" +.\" Copyright (C) 2006-2013 Daniel Baumann +.\" +.\" 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. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program. If not, see . +.\" +.\" On Debian systems, the complete text of the GNU General Public License +.\" can be found in /usr/share/common-licenses/GPL-3 file. +.\" +.\" .TH DOSFSLABEL 8 "2010\-01\-31" "3.0.9" "set or get MS\-DOS filesystem label" .SH NAME diff --git a/man/mkdosfs.8 b/man/mkdosfs.8 index 9100c39..840ac41 100644 --- a/man/mkdosfs.8 +++ b/man/mkdosfs.8 @@ -1,4 +1,24 @@ -.\" -*- nroff -*- +.\" mkdosfs.8 - manpage for dosfsck +.\" +.\" Copyright (C) 2006-2013 Daniel Baumann +.\" +.\" 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. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program. If not, see . +.\" +.\" On Debian systems, the complete text of the GNU General Public License +.\" can be found in /usr/share/common-licenses/GPL-3 file. +.\" +.\" .TH MKDOSFS 8 "5 May 1995" "Version 2.x" .SH NAME .B mkdosfs diff --git a/src/boot.c b/src/boot.c index bbaee04..3d6b4e4 100644 --- a/src/boot.c +++ b/src/boot.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/boot.h b/src/boot.h index c9edfa3..1e30984 100644 --- a/src/boot.h +++ b/src/boot.h @@ -1,6 +1,7 @@ /* boot.h - Read and analyze ia PC/MS-DOS boot sector Copyright (C) 1993 Werner Almesberger + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/check.c b/src/check.c index 3f175b0..1f427ed 100644 --- a/src/check.c +++ b/src/check.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/check.h b/src/check.h index 277c44b..ae05988 100644 --- a/src/check.h +++ b/src/check.h @@ -1,6 +1,7 @@ /* check.h - Check and repair a PC/MS-DOS file system Copyright (C) 1993 Werner Almesberger + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/common.c b/src/common.c index 51605a2..09004dd 100644 --- a/src/common.c +++ b/src/common.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/common.h b/src/common.h index 395eabb..7e998ff 100644 --- a/src/common.h +++ b/src/common.h @@ -1,6 +1,7 @@ /* common.h - Common functions Copyright (C) 1993 Werner Almesberger + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/dosfsck.c b/src/dosfsck.c index c426887..b2f6da0 100644 --- a/src/dosfsck.c +++ b/src/dosfsck.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/dosfsck.h b/src/dosfsck.h index 31ead36..6eb42fb 100644 --- a/src/dosfsck.h +++ b/src/dosfsck.h @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/dosfslabel.c b/src/dosfslabel.c index 71f01d3..9e6cc1f 100644 --- a/src/dosfslabel.c +++ b/src/dosfslabel.c @@ -3,6 +3,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek Copyright (C) 2007 Red Hat, Inc. + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/fat.c b/src/fat.c index 962a8bc..45575cb 100644 --- a/src/fat.c +++ b/src/fat.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/fat.h b/src/fat.h index 13ac1b3..7eaef9e 100644 --- a/src/fat.h +++ b/src/fat.h @@ -1,6 +1,7 @@ /* fat.h - Read/write access to the FAT Copyright (C) 1993 Werner Almesberger + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/file.c b/src/file.c index a73b73f..90b6dfb 100644 --- a/src/file.c +++ b/src/file.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/file.h b/src/file.h index 40bd58a..c7e2e4d 100644 --- a/src/file.h +++ b/src/file.h @@ -1,6 +1,7 @@ /* file.h - Additional file attributes Copyright (C) 1993 Werner Almesberger + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/io.c b/src/io.c index a703c2d..d862fcf 100644 --- a/src/io.c +++ b/src/io.c @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/io.h b/src/io.h index 2db4ea7..45cb7d8 100644 --- a/src/io.h +++ b/src/io.h @@ -2,6 +2,7 @@ Copyright (C) 1993 Werner Almesberger Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/lfn.c b/src/lfn.c index 736491c..f557189 100644 --- a/src/lfn.c +++ b/src/lfn.c @@ -1,6 +1,7 @@ /* lfn.c - Functions for handling VFAT long filenames Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/lfn.h b/src/lfn.h index 2ea44a7..41b08f3 100644 --- a/src/lfn.h +++ b/src/lfn.h @@ -1,6 +1,7 @@ /* lfn.h - Functions for handling VFAT long filenames Copyright (C) 1998 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/mkdosfs.c b/src/mkdosfs.c index af1e0d1..25c520f 100644 --- a/src/mkdosfs.c +++ b/src/mkdosfs.c @@ -5,6 +5,7 @@ Copyright (C) 1993-1994 David Hudson Copyright (C) 1998 H. Peter Anvin Copyright (C) 1998-2005 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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 diff --git a/src/version.h b/src/version.h index 3bcf41d..f794292 100644 --- a/src/version.h +++ b/src/version.h @@ -1,6 +1,7 @@ /* version.h Copyright (C) 1998-2005 Roman Hodek + Copyright (C) 2008-2013 Daniel Baumann 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