diff options
author | hwspeedy <ns@bigbear.dk> | 2024-03-12 13:03:39 +0100 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-03-12 13:03:39 +0100 |
commit | 65ef92c3a4baed206b6aeb4142dca88016fdfc35 (patch) | |
tree | 754e014862c527e7ec6b38b882153cb8b8771ec1 | |
parent | 4ddedff3fa107fdf2f229c258bd9dfd6c6223b3b (diff) |
LICENSE relicense public domain sha1.h as GPL2+, added credits for binreloc.c+h
-rw-r--r-- | hardinfo2/binreloc.c | 1 | ||||
-rw-r--r-- | includes/binreloc.h | 1 | ||||
-rw-r--r-- | includes/sha1.h | 14 |
3 files changed, 15 insertions, 1 deletions
diff --git a/hardinfo2/binreloc.c b/hardinfo2/binreloc.c index 42a7a6df..d0a00570 100644 --- a/hardinfo2/binreloc.c +++ b/hardinfo2/binreloc.c @@ -1,5 +1,6 @@ /* * BinReloc - a library for creating relocatable executables + * Written by: Hongli Lai <h.lai@chello.nl> * Copyright: hardinfo2 project * http://autopackage.org/ * diff --git a/includes/binreloc.h b/includes/binreloc.h index 4e7366e8..5c7074a8 100644 --- a/includes/binreloc.h +++ b/includes/binreloc.h @@ -1,5 +1,6 @@ /* * BinReloc - a library for creating relocatable executables + * Written by: Hongli Lai <h.lai@chello.nl> * Copyright by: hardinfo2 project * http://autopackage.org/ * diff --git a/includes/sha1.h b/includes/sha1.h index 8b5c0b2f..ae22a0f5 100644 --- a/includes/sha1.h +++ b/includes/sha1.h @@ -1,7 +1,19 @@ /* * SHA-1 in C * By Steve Reid <steve@edmweb.com> - * 100% Public Domain + * Copyright by: hardinfo2 project + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License v2.0 or later. + * + * 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 St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __SHA1_H__ |