From 6d9945d20bff0b4e3c9217719edaf21a4d35aa14 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 9 Mar 2021 04:42:30 +0000 Subject: [PATCH] Fix file headers. --- setter/CMakeLists.txt | 2 +- setter/src/dos.c | 6 ++---- setter/src/dos.h | 6 ++---- setter/src/dosos2.h | 6 ++---- setter/src/include/consts.h | 6 ++---- setter/src/include/defs.h | 6 ++---- setter/src/linux/linux.c | 6 ++---- setter/src/linux/linux.h | 6 ++---- setter/src/macos.c | 6 ++---- setter/src/macos.h | 6 ++---- setter/src/macos.r | 6 ++---- setter/src/main.c | 6 ++---- setter/src/main.h | 6 ++---- setter/src/netware.c | 6 ++---- setter/src/netware.h | 6 ++---- setter/src/os2_16.c | 6 ++---- setter/src/os2_16.h | 6 ++---- setter/src/os2_32.c | 6 ++---- setter/src/os2_32.h | 6 ++---- setter/src/unix/unix.c | 4 ++-- setter/src/unix/unix.h | 4 ++-- setter/src/win32.c | 6 ++---- setter/src/win32.h | 6 ++---- 23 files changed, 45 insertions(+), 85 deletions(-) diff --git a/setter/CMakeLists.txt b/setter/CMakeLists.txt index 3d3ad25..f6f6a57 100644 --- a/setter/CMakeLists.txt +++ b/setter/CMakeLists.txt @@ -3,4 +3,4 @@ project(setter C) set(CMAKE_C_STANDARD 90) -add_executable(setter src/include/consts.h src/include/defs.h src/main.h src/dosos2.h src/os2_16.h src/os2_32.h src/main.c src/dos.c src/os2_16.c src/os2_32.c src/win32.c src/win32.h src/unix/unix.c src/macos.c src/macos.h src/unix/unix.h src/linux/linux.c src/linux/linux.h src/netware.c src/netware.h) \ No newline at end of file +add_executable(setter src/include/consts.h src/include/defs.h src/main.h src/dosos2.h src/os2_16.h src/os2_32.h src/main.c src/dos.c src/os2_16.c src/os2_32.c src/win32.c src/win32.h src/unix/unix.c src/macos.c src/macos.h src/unix/unix.h src/linux/linux.c src/linux/linux.h src/netware.c src/netware.h src/linux/xattr.c) \ No newline at end of file diff --git a/setter/src/dos.c b/setter/src/dos.c index 08a00d3..61c3648 100644 --- a/setter/src/dos.c +++ b/setter/src/dos.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : dos.c Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains DOS code @@ -18,8 +16,8 @@ Contains DOS code 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/dos.h b/setter/src/dos.h index edab901..7c46190 100644 --- a/setter/src/dos.h +++ b/setter/src/dos.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : dos.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains DOS definitions @@ -18,8 +16,8 @@ Contains DOS definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/dosos2.h b/setter/src/dosos2.h index f23ef10..75ac2cf 100644 --- a/setter/src/dosos2.h +++ b/setter/src/dosos2.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : dosos2.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains definitions common to DOS and OS/2 @@ -18,8 +16,8 @@ Contains definitions common to DOS and OS/2 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/include/consts.h b/setter/src/include/consts.h index b21d9e6..627a6bf 100644 --- a/setter/src/include/consts.h +++ b/setter/src/include/consts.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : consts.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Constants @@ -18,8 +16,8 @@ Constants 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/include/defs.h b/setter/src/include/defs.h index 91a2cd7..6316bf9 100644 --- a/setter/src/include/defs.h +++ b/setter/src/include/defs.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : defs.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains common definitions @@ -18,8 +16,8 @@ Contains common definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/linux/linux.c b/setter/src/linux/linux.c index e0d9f6d..7074006 100644 --- a/setter/src/linux/linux.c +++ b/setter/src/linux/linux.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : linux.c Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains Linux implementations @@ -18,8 +16,8 @@ Contains Linux implementations 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/linux/linux.h b/setter/src/linux/linux.h index 92e96df..4b968ca 100644 --- a/setter/src/linux/linux.h +++ b/setter/src/linux/linux.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : linux.c Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains Linux definitions @@ -18,8 +16,8 @@ Contains Linux definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/macos.c b/setter/src/macos.c index e253a38..b450ef5 100644 --- a/setter/src/macos.c +++ b/setter/src/macos.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : macos.c Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains Mac OS code. @@ -18,8 +16,8 @@ Contains Mac OS code. 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/macos.h b/setter/src/macos.h index bcfeb90..cc0c86b 100644 --- a/setter/src/macos.h +++ b/setter/src/macos.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : macos.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains Mac OS definitions. @@ -18,8 +16,8 @@ Contains Mac OS definitions. 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/macos.r b/setter/src/macos.r index efdf88a..97de8c2 100644 --- a/setter/src/macos.r +++ b/setter/src/macos.r @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : macos.r Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains Mac OS resources @@ -18,8 +16,8 @@ Contains Mac OS resources 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/main.c b/setter/src/main.c index fff8d08..e9fa011 100644 --- a/setter/src/main.c +++ b/setter/src/main.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : main.c Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains global definitions @@ -18,8 +16,8 @@ Contains global definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/main.h b/setter/src/main.h index 044c5bf..8a12884 100644 --- a/setter/src/main.h +++ b/setter/src/main.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : main.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains global definitions @@ -18,8 +16,8 @@ Contains global definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/netware.c b/setter/src/netware.c index 34b6454..20b0b59 100644 --- a/setter/src/netware.c +++ b/setter/src/netware.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : dos.c Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains DOS code @@ -18,8 +16,8 @@ Contains DOS code 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/netware.h b/setter/src/netware.h index 50be789..1f254fc 100644 --- a/setter/src/netware.h +++ b/setter/src/netware.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : dos.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains DOS definitions @@ -18,8 +16,8 @@ Contains DOS definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/os2_16.c b/setter/src/os2_16.c index c77e12f..0a1f368 100644 --- a/setter/src/os2_16.c +++ b/setter/src/os2_16.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : os2_16.c Author(s) : Natalia Portillo -Component : fstester.setter.os2 - --[ Description ] ----------------------------------------------------------- Contains 16-bit OS/2 code @@ -18,8 +16,8 @@ Contains 16-bit OS/2 code 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/os2_16.h b/setter/src/os2_16.h index af3b68d..2a6853b 100644 --- a/setter/src/os2_16.h +++ b/setter/src/os2_16.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : os2_16.h Author(s) : Natalia Portillo -Component : fstester.setter - --[ Description ] ----------------------------------------------------------- Contains 16-bit OS/2 definitions @@ -18,8 +16,8 @@ Contains 16-bit OS/2 definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/os2_32.c b/setter/src/os2_32.c index f5600f3..6373a8a 100644 --- a/setter/src/os2_32.c +++ b/setter/src/os2_32.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : os2_32.c Author(s) : Natalia Portillo -Component : fstester.setter.os2 - --[ Description ] ----------------------------------------------------------- Contains 32-bit OS/2 code @@ -18,8 +16,8 @@ Contains 32-bit OS/2 code 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/os2_32.h b/setter/src/os2_32.h index 511c6e0..b269c73 100644 --- a/setter/src/os2_32.h +++ b/setter/src/os2_32.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : os2_32.h Author(s) : Natalia Portillo -Component : fstester.setter.os2 - --[ Description ] ----------------------------------------------------------- Contains 32-bit OS/2 declarations @@ -18,8 +16,8 @@ Contains 32-bit OS/2 declarations 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/unix/unix.c b/setter/src/unix/unix.c index 6fecdd5..36e4f04 100644 --- a/setter/src/unix/unix.c +++ b/setter/src/unix/unix.c @@ -16,8 +16,8 @@ Contains common implementations for UNIX family and compatibles 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/unix/unix.h b/setter/src/unix/unix.h index 917b727..b4999fd 100644 --- a/setter/src/unix/unix.h +++ b/setter/src/unix/unix.h @@ -16,8 +16,8 @@ Contains UNIX definitions 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/win32.c b/setter/src/win32.c index 6619519..7f880c6 100644 --- a/setter/src/win32.c +++ b/setter/src/win32.c @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : win32.c Author(s) : Natalia Portillo -Component : fstester.setter.win32 - --[ Description ] ----------------------------------------------------------- Contains 32-bit and 64-bit Windows code @@ -18,8 +16,8 @@ Contains 32-bit and 64-bit Windows code 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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 diff --git a/setter/src/win32.h b/setter/src/win32.h index c444a0b..4527240 100644 --- a/setter/src/win32.h +++ b/setter/src/win32.h @@ -5,8 +5,6 @@ Aaru Data Preservation Suite Filename : win32.h Author(s) : Natalia Portillo -Component : fstester.setter.win32 - --[ Description ] ----------------------------------------------------------- Contains 32-bit and 64-bit Windows declarations @@ -18,8 +16,8 @@ Contains 32-bit and 64-bit Windows declarations 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 warraty of - MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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