summaryrefslogtreecommitdiff
path: root/lib9p
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 00:02:20 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 00:02:20 -0600
commit52d48b9ea39a990295fdaf53dea492637051bd10 (patch)
tree0833f14d08c26443a94a9a33ce934389c568896b /lib9p
parent88adb90f5e805bea27e619fd5209ef58dbff6fd1 (diff)
s/Licence/License/g
Diffstat (limited to 'lib9p')
-rw-r--r--lib9p/.editorconfig2
-rw-r--r--lib9p/9p.c2
-rw-r--r--lib9p/CMakeLists.txt2
-rwxr-xr-xlib9p/idl.gen2
-rw-r--r--lib9p/idl/0000-README.md2
-rw-r--r--lib9p/idl/1992-9P0.9p.wip2
-rw-r--r--lib9p/idl/1995-9P1.9p.wip2
-rw-r--r--lib9p/idl/1996-Styx.9p.wip2
-rw-r--r--lib9p/idl/2002-9P2000.9p2
-rw-r--r--lib9p/idl/2005-9P2000.u.9p2
-rw-r--r--lib9p/idl/2010-9P2000.L.9p.wip2
-rw-r--r--lib9p/idl/2012-9P2000.e.9p2
-rw-r--r--lib9p/include/lib9p/9p.h2
-rwxr-xr-xlib9p/include/lib9p/linux-errno.h.gen2
-rw-r--r--lib9p/include/lib9p/srv.h2
-rw-r--r--lib9p/internal.h2
-rw-r--r--lib9p/map.h2
-rw-r--r--lib9p/srv.c2
18 files changed, 18 insertions, 18 deletions
diff --git a/lib9p/.editorconfig b/lib9p/.editorconfig
index e3ef174..a585eb7 100644
--- a/lib9p/.editorconfig
+++ b/lib9p/.editorconfig
@@ -1,7 +1,7 @@
# lib9p/.editorconfig - How Python scripts should be formatted
#
# 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
[{idl.gen,linux-errno.h.gen}]
indent_style = space
diff --git a/lib9p/9p.c b/lib9p/9p.c
index 86d0ab8..9f0bd4c 100644
--- a/lib9p/9p.c
+++ b/lib9p/9p.c
@@ -1,7 +1,7 @@
/* lib9p/9p.c - Base 9P protocol utilities for both clients and servers
*
* 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 <inttypes.h> /* for PRIu{n} */
diff --git a/lib9p/CMakeLists.txt b/lib9p/CMakeLists.txt
index 2448724..488cff9 100644
--- a/lib9p/CMakeLists.txt
+++ b/lib9p/CMakeLists.txt
@@ -1,7 +1,7 @@
# lib9p/CMakeLists.txt - TODO
#
# 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
add_library(lib9p INTERFACE)
target_include_directories(lib9p SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
diff --git a/lib9p/idl.gen b/lib9p/idl.gen
index 8a168b7..ec42cfd 100755
--- a/lib9p/idl.gen
+++ b/lib9p/idl.gen
@@ -3,7 +3,7 @@
# defining 9P protocol variants.
#
# 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
import enum
import os.path
diff --git a/lib9p/idl/0000-README.md b/lib9p/idl/0000-README.md
index be63943..cec27e2 100644
--- a/lib9p/idl/0000-README.md
+++ b/lib9p/idl/0000-README.md
@@ -2,7 +2,7 @@
0000-README.md - Overview of 9P protocol definitions
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
-->
# 9P protocol definitions
diff --git a/lib9p/idl/1992-9P0.9p.wip b/lib9p/idl/1992-9P0.9p.wip
index c8db485..4278fa3 100644
--- a/lib9p/idl/1992-9P0.9p.wip
+++ b/lib9p/idl/1992-9P0.9p.wip
@@ -1,7 +1,7 @@
# 1992-9P0.9p - Definitions of 9P0 (Plan 9 1st ed) messages
#
# 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
# https://man.cat-v.org/plan_9_1st_ed/5/
version "9P0"
diff --git a/lib9p/idl/1995-9P1.9p.wip b/lib9p/idl/1995-9P1.9p.wip
index 2f4ed93..55814d4 100644
--- a/lib9p/idl/1995-9P1.9p.wip
+++ b/lib9p/idl/1995-9P1.9p.wip
@@ -1,7 +1,7 @@
# 1995-9P1.9p - Definitions of 9P1 (Plan 9 2nd ed and 3rd ed) messages
#
# 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
# https://man.cat-v.org/plan_9_2nd_ed/5/
# https://man.cat-v.org/plan_9_3rd_ed/5/
diff --git a/lib9p/idl/1996-Styx.9p.wip b/lib9p/idl/1996-Styx.9p.wip
index 599abc8..2feb24f 100644
--- a/lib9p/idl/1996-Styx.9p.wip
+++ b/lib9p/idl/1996-Styx.9p.wip
@@ -1,7 +1,7 @@
# 1996-Styx.9p - Definitions of Styx messages
#
# 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
# Styx was a variant of the 9P protocol used by the Inferno operating
# system. Message framing looks like 9P1 (1995), but semantics look
diff --git a/lib9p/idl/2002-9P2000.9p b/lib9p/idl/2002-9P2000.9p
index e45c0e1..03f00c2 100644
--- a/lib9p/idl/2002-9P2000.9p
+++ b/lib9p/idl/2002-9P2000.9p
@@ -1,7 +1,7 @@
# 2002-9P2000.9p - Definitions of 9P2000 messages
#
# 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
# "9P2000" base protocol
# https://ericvh.github.io/9p-rfc/rfc9p2000.html
diff --git a/lib9p/idl/2005-9P2000.u.9p b/lib9p/idl/2005-9P2000.u.9p
index a47e9db..8b59efa 100644
--- a/lib9p/idl/2005-9P2000.u.9p
+++ b/lib9p/idl/2005-9P2000.u.9p
@@ -1,7 +1,7 @@
# 2005-9P2000.u.9p - Definitions of 9P2000.u messages
#
# 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
# "9P2000.u" Unix extension
# https://ericvh.github.io/9p-rfc/rfc9p2000.u.html
diff --git a/lib9p/idl/2010-9P2000.L.9p.wip b/lib9p/idl/2010-9P2000.L.9p.wip
index a0de883..5261f7e 100644
--- a/lib9p/idl/2010-9P2000.L.9p.wip
+++ b/lib9p/idl/2010-9P2000.L.9p.wip
@@ -1,7 +1,7 @@
# 2010-9P2000.L.9p - Definitions of 9P2000.L messages
#
# 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
# "9P2000.L" Linux extension
# https://github.com/chaos/diod/blob/master/protocol.md
diff --git a/lib9p/idl/2012-9P2000.e.9p b/lib9p/idl/2012-9P2000.e.9p
index 2f88a60..27db50f 100644
--- a/lib9p/idl/2012-9P2000.e.9p
+++ b/lib9p/idl/2012-9P2000.e.9p
@@ -1,7 +1,7 @@
# 2012-9P2000.e.9p - Definitions of 9P2000.e messages
#
# 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
# "9P2000.e" Erlang extension
# https://erlangonxen.org/more/9p2000e
diff --git a/lib9p/include/lib9p/9p.h b/lib9p/include/lib9p/9p.h
index 9a91c41..bf304ac 100644
--- a/lib9p/include/lib9p/9p.h
+++ b/lib9p/include/lib9p/9p.h
@@ -1,7 +1,7 @@
/* lib9p/9p.h - Base 9P protocol definitions for both clients and servers
*
* 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 _LIB9P_9P_H_
diff --git a/lib9p/include/lib9p/linux-errno.h.gen b/lib9p/include/lib9p/linux-errno.h.gen
index c757dcc..8f4e0c8 100755
--- a/lib9p/include/lib9p/linux-errno.h.gen
+++ b/lib9p/include/lib9p/linux-errno.h.gen
@@ -2,7 +2,7 @@
# lib9p/linux-errno.h.gen - Generate a C header from a list of errno numbers
#
# 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
import sys
diff --git a/lib9p/include/lib9p/srv.h b/lib9p/include/lib9p/srv.h
index 3d667db..0617e57 100644
--- a/lib9p/include/lib9p/srv.h
+++ b/lib9p/include/lib9p/srv.h
@@ -1,7 +1,7 @@
/* lib9p/srv.h - 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
*/
#ifndef _LIB9P_SRV_H_
diff --git a/lib9p/internal.h b/lib9p/internal.h
index c300be3..004660a 100644
--- a/lib9p/internal.h
+++ b/lib9p/internal.h
@@ -1,7 +1,7 @@
/* lib9p/internal.h - TODO
*
* 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 _LIB9P_INTERNAL_H_
diff --git a/lib9p/map.h b/lib9p/map.h
index 9d4d4af..c816bde 100644
--- a/lib9p/map.h
+++ b/lib9p/map.h
@@ -1,7 +1,7 @@
/* lib9p/map.h - A really dumb map/dict data structur
*
* 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 "internal.h"
diff --git a/lib9p/srv.c b/lib9p/srv.c
index 43676a8..3a3807c 100644
--- a/lib9p/srv.c
+++ b/lib9p/srv.c
@@ -1,7 +1,7 @@
/* lib9p/srv.c - 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 <assert.h>