summaryrefslogtreecommitdiff
path: root/src/basic/siphash24.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-10-29 19:05:05 +0100
committerGitHub <noreply@github.com>2020-10-29 19:05:05 +0100
commite61f999755e37a8b8965e782f133dd718359a8d3 (patch)
tree0304ed1dc1840a532ea8354b7617a943333203aa /src/basic/siphash24.c
parentae7e5d20375fd053f406de3baad17b9b6045c350 (diff)
parentc062cd9dde8f3a578c552d3bd04f77ee5d78a0b8 (diff)
downloadsystemd-e61f999755e37a8b8965e782f133dd718359a8d3.tar.gz
Merge pull request #17472 from keszybz/spdx-license-headers
More SPDX license headers
Diffstat (limited to 'src/basic/siphash24.c')
-rw-r--r--src/basic/siphash24.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/basic/siphash24.c b/src/basic/siphash24.c
index 61180819b1..7c61eb145d 100644
--- a/src/basic/siphash24.c
+++ b/src/basic/siphash24.c
@@ -1,3 +1,5 @@
+/* SPDX-License-Identifier: CC0-1.0 */
+
/*
SipHash reference C implementation
@@ -10,7 +12,7 @@
worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with
- this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
+ this software. If not, see <https://creativecommons.org/publicdomain/zero/1.0/>.
(Minimal changes made by Lennart Poettering, to make clean for inclusion in systemd)
(Refactored by Tom Gundersen to split up in several functions and follow systemd