summaryrefslogtreecommitdiff
path: root/cmd/srv9p
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/srv9p')
-rw-r--r--cmd/srv9p/CMakeLists.txt2
-rw-r--r--cmd/srv9p/config/config.h2
-rw-r--r--cmd/srv9p/main.c2
-rwxr-xr-xcmd/srv9p/static.h.gen2
-rw-r--r--cmd/srv9p/static9p.c2
-rw-r--r--cmd/srv9p/static9p.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/cmd/srv9p/CMakeLists.txt b/cmd/srv9p/CMakeLists.txt
index d24d3d9..4c170fb 100644
--- a/cmd/srv9p/CMakeLists.txt
+++ b/cmd/srv9p/CMakeLists.txt
@@ -1,7 +1,7 @@
# cmd/srv9p/CMakeLists.txt - Build script for srv9p test/dev executable
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
if (PICO_PLATFORM STREQUAL "host")
diff --git a/cmd/srv9p/config/config.h b/cmd/srv9p/config/config.h
index 0f6c37e..a184e6f 100644
--- a/cmd/srv9p/config/config.h
+++ b/cmd/srv9p/config/config.h
@@ -1,7 +1,7 @@
/* config.h - Compile-time configuration for srv9p
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _CONFIG_H_
diff --git a/cmd/srv9p/main.c b/cmd/srv9p/main.c
index 6ef2cd3..d30c4f9 100644
--- a/cmd/srv9p/main.c
+++ b/cmd/srv9p/main.c
@@ -1,7 +1,7 @@
/* srv9p/main.c - Main entry point for test 9P server
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <error.h>
diff --git a/cmd/srv9p/static.h.gen b/cmd/srv9p/static.h.gen
index a048bd6..a93419f 100755
--- a/cmd/srv9p/static.h.gen
+++ b/cmd/srv9p/static.h.gen
@@ -2,7 +2,7 @@
# srv9p/static.h.gen - Generate C definitions for GNU `ld -r -b binary` files
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
nm --format=posix "$@" |
sed -n -E \
diff --git a/cmd/srv9p/static9p.c b/cmd/srv9p/static9p.c
index a5b4492..3632c26 100644
--- a/cmd/srv9p/static9p.c
+++ b/cmd/srv9p/static9p.c
@@ -1,7 +1,7 @@
/* srv9p/static9p.c - Serve static files over 9P
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <assert.h>
diff --git a/cmd/srv9p/static9p.h b/cmd/srv9p/static9p.h
index 5ef6cb1..7a3d476 100644
--- a/cmd/srv9p/static9p.h
+++ b/cmd/srv9p/static9p.h
@@ -1,7 +1,7 @@
/* srv9p/static9p.h - Serve static files over 9P
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
- * SPDX-Licence-Identifier: AGPL-3.0-or-later
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _SRV9P_STATIC9P_H_