From 52d48b9ea39a990295fdaf53dea492637051bd10 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 28 Oct 2024 00:02:20 -0600 Subject: s/Licence/License/g --- libdhcp/CMakeLists.txt | 2 +- libdhcp/dhcp.c | 6 +++--- libdhcp/include/libdhcp/dhcp.h | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'libdhcp') diff --git a/libdhcp/CMakeLists.txt b/libdhcp/CMakeLists.txt index e525191..a14fd50 100644 --- a/libdhcp/CMakeLists.txt +++ b/libdhcp/CMakeLists.txt @@ -1,7 +1,7 @@ # libdhcp/CMakeLists.txt - TODO # # Copyright (C) 2024 Luke T. Shumaker -# SPDX-Licence-Identifier: AGPL-3.0-or-later +# SPDX-License-Identifier: AGPL-3.0-or-later add_library(libdhcp INTERFACE) target_include_directories(libdhcp SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include) diff --git a/libdhcp/dhcp.c b/libdhcp/dhcp.c index a1f54e6..9786018 100644 --- a/libdhcp/dhcp.c +++ b/libdhcp/dhcp.c @@ -1,7 +1,7 @@ /* libdhcp/dhcp.c - A DHCP client * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later * * ----------------------------------------------------------------------------- * https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/Internet/DHCP/dhcp.c @@ -34,7 +34,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * SPDX-Licence-Identifier: BSD-3-Clause + * SPDX-License-Identifier: BSD-3-Clause * * ----------------------------------------------------------------------------- * https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/license.txt @@ -61,7 +61,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * - * SPDX-Licence-Identifier: MIT + * SPDX-License-Identifier: MIT */ #include /* for strlen(), memcpy(), memset() */ diff --git a/libdhcp/include/libdhcp/dhcp.h b/libdhcp/include/libdhcp/dhcp.h index e259034..0b4c06f 100644 --- a/libdhcp/include/libdhcp/dhcp.h +++ b/libdhcp/include/libdhcp/dhcp.h @@ -1,7 +1,7 @@ /* libdhcp/dhcp.h - A DHCP client * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later * * ----------------------------------------------------------------------------- * https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/Internet/DHCP/dhcp.h @@ -34,7 +34,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * SPDX-Licence-Identifier: BSD-3-Clause + * SPDX-License-Identifier: BSD-3-Clause * * ----------------------------------------------------------------------------- * https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/license.txt @@ -61,7 +61,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * - * SPDX-Licence-Identifier: MIT + * SPDX-License-Identifier: MIT */ #ifndef _LIBDHCP_DHCP_H_ -- cgit v1.2.3-2-g168b