From 8d36ef4a077fa17c4054076ead4ea3e668ee7b0f Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 9 Apr 2024 21:25:38 -0500 Subject: [PATCH] Cleanup: The OSLv1 license usage, fixing license reference. The license should read "open-standard-license-1.0-or-later" rather than "open-standard-license-1.0". The license file itself is already labelled this. These files simply were not correctly updated. --- build/scripts/bootstrap.sh | 2 +- build/scripts/install.sh | 2 +- build/scripts/package.sh | 2 +- build/scripts/test.sh | 2 +- documents/time.txt | 2 +- level_3/byte_dump/c/byte_dump.c | 2 +- level_3/control/c/control.c | 2 +- level_3/control/documents/packet_request.txt | 2 +- level_3/control/documents/packet_response.txt | 2 +- level_3/control/documents/settings.txt | 2 +- level_3/control/specifications/settings.txt | 2 +- level_3/controller/c/controller.c | 2 +- level_3/controller/documents/actions.txt | 2 +- level_3/controller/documents/entry.txt | 2 +- level_3/controller/documents/exit.txt | 2 +- level_3/controller/documents/packet.txt | 2 +- level_3/controller/documents/rule.txt | 2 +- level_3/controller/documents/simulate.txt | 2 +- level_3/controller/specifications/entry.txt | 2 +- level_3/controller/specifications/exit.txt | 2 +- level_3/controller/specifications/packet.txt | 2 +- level_3/controller/specifications/rule.txt | 2 +- level_3/controller/specifications/task.txt | 2 +- level_3/controller/specifications/time.txt | 2 +- level_3/fake/c/fake.c | 2 +- level_3/fake/documents/fakefile.txt | 2 +- level_3/fake/documents/settings.txt | 2 +- level_3/fake/specifications/defines.txt | 2 +- level_3/fake/specifications/dependencies.txt | 2 +- level_3/fake/specifications/fakefile.txt | 2 +- level_3/fake/specifications/settings.txt | 2 +- level_3/firewall/c/firewall.c | 2 +- level_3/fss_basic_list_read/c/fss_basic_list_read.c | 2 +- level_3/fss_basic_list_write/c/fss_basic_list_write.c | 2 +- level_3/fss_basic_read/c/fss_basic_read.c | 2 +- level_3/fss_basic_write/c/fss_basic_write.c | 2 +- level_3/fss_embedded_list_read/c/fss_embedded_list_read.c | 2 +- level_3/fss_embedded_list_write/c/fss_embedded_list_write.c | 2 +- level_3/fss_extended_list_read/c/fss_extended_list_read.c | 2 +- level_3/fss_extended_list_write/c/fss_extended_list_write.c | 2 +- level_3/fss_extended_read/c/fss_extended_read.c | 2 +- level_3/fss_extended_write/c/fss_extended_write.c | 2 +- level_3/fss_identify/c/fss_identify.c | 2 +- level_3/fss_payload_read/c/fss_payload_read.c | 2 +- level_3/fss_payload_write/c/fss_payload_write.c | 2 +- level_3/fss_status_code/c/fss_status_code.c | 2 +- level_3/iki_read/c/iki_read.c | 2 +- level_3/iki_write/c/iki_write.c | 2 +- level_3/status_code/c/status_code.c | 2 +- level_3/utf8/c/utf8.c | 2 +- level_3/utf8/specifications/output.txt | 2 +- specifications/fss-0000.txt | 2 +- specifications/fss-0001.txt | 2 +- specifications/fss-0002.txt | 2 +- specifications/fss-0003.txt | 2 +- specifications/fss-0004.txt | 2 +- specifications/fss-0005.txt | 2 +- specifications/fss-0006.txt | 2 +- specifications/fss-0007.txt | 2 +- specifications/fss-0008.txt | 2 +- specifications/fss-0009.txt | 2 +- specifications/fss-000a.txt | 2 +- specifications/fss-000b.txt | 2 +- specifications/fss-000c.txt | 2 +- specifications/fss-000d.txt | 2 +- specifications/fss-000e.txt | 2 +- specifications/fss-000f.txt | 2 +- specifications/fss-0010.txt | 2 +- specifications/fss.txt | 2 +- specifications/iki-0000.txt | 2 +- specifications/iki-0001.txt | 2 +- specifications/iki-0002.txt | 2 +- specifications/iki.txt | 2 +- specifications/time.txt | 2 +- 74 files changed, 74 insertions(+), 74 deletions(-) diff --git a/build/scripts/bootstrap.sh b/build/scripts/bootstrap.sh index e3ec952..d929614 100644 --- a/build/scripts/bootstrap.sh +++ b/build/scripts/bootstrap.sh @@ -592,7 +592,7 @@ bootstrap_copyright() { echo "Copyright © 2007-2023 Kevin Day." echo echo "Source code license lgpl-2.1-or-later." - echo "Standard and specification license open-standard-license-1.0." + echo "Standard and specification license open-standard-license-1.0-or-later." echo "Documentation license cc-by-sa-4.0." bootstrap_print_last diff --git a/build/scripts/install.sh b/build/scripts/install.sh index 067ee84..ca35c98 100644 --- a/build/scripts/install.sh +++ b/build/scripts/install.sh @@ -539,7 +539,7 @@ install_copyright() { echo "Copyright © 2007-2023 Kevin Day." echo echo "Source code license lgpl-2.1-or-later." - echo "Standard and specification license open-standard-license-1.0." + echo "Standard and specification license open-standard-license-1.0-or-later." echo "Documentation license cc-by-sa-4.0." install_print_last diff --git a/build/scripts/package.sh b/build/scripts/package.sh index ea3772e..1e4b824 100644 --- a/build/scripts/package.sh +++ b/build/scripts/package.sh @@ -519,7 +519,7 @@ package_copyright() { echo "Copyright © 2007-2023 Kevin Day." echo echo "Source code license lgpl-2.1-or-later." - echo "Standard and specification license open-standard-license-1.0." + echo "Standard and specification license open-standard-license-1.0-or-later." echo "Documentation license cc-by-sa-4.0." package_print_last diff --git a/build/scripts/test.sh b/build/scripts/test.sh index ac2006f..a9b250d 100644 --- a/build/scripts/test.sh +++ b/build/scripts/test.sh @@ -395,7 +395,7 @@ test_copyright() { echo "Copyright © 2007-2023 Kevin Day." echo echo "Source code license lgpl-2.1-or-later." - echo "Standard and specification license open-standard-license-1.0." + echo "Standard and specification license open-standard-license-1.0-or-later." echo "Documentation license cc-by-sa-4.0." test_print_last diff --git a/documents/time.txt b/documents/time.txt index 4d29e97..4622582 100644 --- a/documents/time.txt +++ b/documents/time.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named time.txt) can be more easily read using the following iki_read commands: # iki_read time.txt +Q -r UTC UTC -w -WW character "'" "'" code '"' '"' diff --git a/level_3/byte_dump/c/byte_dump.c b/level_3/byte_dump/c/byte_dump.c index 3d15e08..246b661 100644 --- a/level_3/byte_dump/c/byte_dump.c +++ b/level_3/byte_dump/c/byte_dump.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/control/c/control.c b/level_3/control/c/control.c index 808d6c2..66922d6 100644 --- a/level_3/control/c/control.c +++ b/level_3/control/c/control.c @@ -22,7 +22,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/control/documents/packet_request.txt b/level_3/control/documents/packet_request.txt index c8e8ca5..4c254b7 100644 --- a/level_3/control/documents/packet_request.txt +++ b/level_3/control/documents/packet_request.txt @@ -1,6 +1,6 @@ # fss-0002 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # Packet Request: diff --git a/level_3/control/documents/packet_response.txt b/level_3/control/documents/packet_response.txt index 0287730..3163f82 100644 --- a/level_3/control/documents/packet_response.txt +++ b/level_3/control/documents/packet_response.txt @@ -1,6 +1,6 @@ # fss-0002 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # Packet Response: diff --git a/level_3/control/documents/settings.txt b/level_3/control/documents/settings.txt index 77837d6..7c46725 100644 --- a/level_3/control/documents/settings.txt +++ b/level_3/control/documents/settings.txt @@ -1,6 +1,6 @@ # fss-0002 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # Settings Documentation: diff --git a/level_3/control/specifications/settings.txt b/level_3/control/specifications/settings.txt index 17c0be5..11af13d 100644 --- a/level_3/control/specifications/settings.txt +++ b/level_3/control/specifications/settings.txt @@ -1,6 +1,6 @@ # fss-0002 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # Settings Specification: diff --git a/level_3/controller/c/controller.c b/level_3/controller/c/controller.c index 8fbfcc0..9a988f5 100644 --- a/level_3/controller/c/controller.c +++ b/level_3/controller/c/controller.c @@ -27,7 +27,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/controller/documents/actions.txt b/level_3/controller/documents/actions.txt index bbe70f5..9cad634 100644 --- a/level_3/controller/documents/actions.txt +++ b/level_3/controller/documents/actions.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named actions.txt) can be more easily read using the following iki_read commands: # iki_read actions.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/documents/entry.txt b/level_3/controller/documents/entry.txt index 394fd95..7a1983f 100644 --- a/level_3/controller/documents/entry.txt +++ b/level_3/controller/documents/entry.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named entry.txt) can be more easily read using the following iki_read commands: # iki_read entry.txt +Q -r PID PID -w -WW code '"' '"' diff --git a/level_3/controller/documents/exit.txt b/level_3/controller/documents/exit.txt index bfa4372..1d287b6 100644 --- a/level_3/controller/documents/exit.txt +++ b/level_3/controller/documents/exit.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named exit.txt) can be more easily read using the following iki_read commands: # iki_read exit.txt +Q -w -r PID PID -w -W code '"' '"' diff --git a/level_3/controller/documents/packet.txt b/level_3/controller/documents/packet.txt index 3a0038d..a78f9fa 100644 --- a/level_3/controller/documents/packet.txt +++ b/level_3/controller/documents/packet.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named packet.txt) can be more easily read using the following iki_read commands: # iki_read packet.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/documents/rule.txt b/level_3/controller/documents/rule.txt index 8d9e1c5..5d9805a 100644 --- a/level_3/controller/documents/rule.txt +++ b/level_3/controller/documents/rule.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named rule.txt) can be more easily read using the following iki_read commands: # iki_read rule.txt +Q -r PID PID -w -W code '"' '"' diff --git a/level_3/controller/documents/simulate.txt b/level_3/controller/documents/simulate.txt index 2dae70d..a7d003d 100644 --- a/level_3/controller/documents/simulate.txt +++ b/level_3/controller/documents/simulate.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named simulate.txt) can be more easily read using the following iki_read commands: # iki_read simulate.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/specifications/entry.txt b/level_3/controller/specifications/entry.txt index 92ceeea..54f9aff 100644 --- a/level_3/controller/specifications/entry.txt +++ b/level_3/controller/specifications/entry.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named entry.txt) can be more easily read using the following iki_read commands: # iki_read entry.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/specifications/exit.txt b/level_3/controller/specifications/exit.txt index 83ab08f..1d2b842 100644 --- a/level_3/controller/specifications/exit.txt +++ b/level_3/controller/specifications/exit.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named exit.txt) can be more easily read using the following iki_read commands: # iki_read exit.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/specifications/packet.txt b/level_3/controller/specifications/packet.txt index 91d2bb6..806f51e 100644 --- a/level_3/controller/specifications/packet.txt +++ b/level_3/controller/specifications/packet.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named packet.txt) can be more easily read using the following iki_read commands: # iki_read packet.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/specifications/rule.txt b/level_3/controller/specifications/rule.txt index 8ea846e..db45a2e 100644 --- a/level_3/controller/specifications/rule.txt +++ b/level_3/controller/specifications/rule.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named rule.txt) can be more easily read using the following iki_read commands: # iki_read rule.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/specifications/task.txt b/level_3/controller/specifications/task.txt index 8175aa4..5158361 100644 --- a/level_3/controller/specifications/task.txt +++ b/level_3/controller/specifications/task.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named task.txt) can be more easily read using the following iki_read commands: # iki_read task.txt +Q -w -W code '"' '"' diff --git a/level_3/controller/specifications/time.txt b/level_3/controller/specifications/time.txt index 4af3cf9..9170fde 100644 --- a/level_3/controller/specifications/time.txt +++ b/level_3/controller/specifications/time.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # # This file (assumed to be named time.txt) can be more easily read using the following iki_read commands: # iki_read time.txt +Q -r UTC UTC -w -WW character "'" "'" code '"' '"' diff --git a/level_3/fake/c/fake.c b/level_3/fake/c/fake.c index 738b93d..627a007 100644 --- a/level_3/fake/c/fake.c +++ b/level_3/fake/c/fake.c @@ -28,7 +28,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fake/documents/fakefile.txt b/level_3/fake/documents/fakefile.txt index f557b6c..1197f1e 100644 --- a/level_3/fake/documents/fakefile.txt +++ b/level_3/fake/documents/fakefile.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # version 2024/03/23 # # This file (assumed to be named fakefile.txt) can be more easily read using the following iki_read commands: diff --git a/level_3/fake/documents/settings.txt b/level_3/fake/documents/settings.txt index 793a364..c6f877b 100644 --- a/level_3/fake/documents/settings.txt +++ b/level_3/fake/documents/settings.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # version 2024/03/23 # # This file (assumed to be named settings.txt) can be more easily read using the following iki_read commands: diff --git a/level_3/fake/specifications/defines.txt b/level_3/fake/specifications/defines.txt index b85fb6b..e2c8412 100644 --- a/level_3/fake/specifications/defines.txt +++ b/level_3/fake/specifications/defines.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # version 2024/03/23 # # This file (assumed to be named defines.txt) can be more easily read using the following iki_read commands: diff --git a/level_3/fake/specifications/dependencies.txt b/level_3/fake/specifications/dependencies.txt index 0983e5c..abb9ed7 100644 --- a/level_3/fake/specifications/dependencies.txt +++ b/level_3/fake/specifications/dependencies.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # version 2024/03/23 # # This file (assumed to be named dependencies.txt) can be more easily read using the following iki_read commands: diff --git a/level_3/fake/specifications/fakefile.txt b/level_3/fake/specifications/fakefile.txt index 640dd4a..6489406 100644 --- a/level_3/fake/specifications/fakefile.txt +++ b/level_3/fake/specifications/fakefile.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # version 2024/03/23 # # This file (assumed to be named fakefile.txt) can be more easily read using the following iki_read commands: diff --git a/level_3/fake/specifications/settings.txt b/level_3/fake/specifications/settings.txt index 4121a80..5fd1e63 100644 --- a/level_3/fake/specifications/settings.txt +++ b/level_3/fake/specifications/settings.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # version 2024/03/23 # # This file (assumed to be named settings.txt) can be more easily read using the following iki_read commands: diff --git a/level_3/firewall/c/firewall.c b/level_3/firewall/c/firewall.c index 4283b07..6f9d345 100644 --- a/level_3/firewall/c/firewall.c +++ b/level_3/firewall/c/firewall.c @@ -27,7 +27,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_basic_list_read/c/fss_basic_list_read.c b/level_3/fss_basic_list_read/c/fss_basic_list_read.c index af9765b..daa8eff 100644 --- a/level_3/fss_basic_list_read/c/fss_basic_list_read.c +++ b/level_3/fss_basic_list_read/c/fss_basic_list_read.c @@ -22,7 +22,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_basic_list_write/c/fss_basic_list_write.c b/level_3/fss_basic_list_write/c/fss_basic_list_write.c index 9705a4b..de2fb2b 100644 --- a/level_3/fss_basic_list_write/c/fss_basic_list_write.c +++ b/level_3/fss_basic_list_write/c/fss_basic_list_write.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_basic_read/c/fss_basic_read.c b/level_3/fss_basic_read/c/fss_basic_read.c index f61de07..4c7bc94 100644 --- a/level_3/fss_basic_read/c/fss_basic_read.c +++ b/level_3/fss_basic_read/c/fss_basic_read.c @@ -22,7 +22,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_basic_write/c/fss_basic_write.c b/level_3/fss_basic_write/c/fss_basic_write.c index edb496c..57e525e 100644 --- a/level_3/fss_basic_write/c/fss_basic_write.c +++ b/level_3/fss_basic_write/c/fss_basic_write.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_embedded_list_read/c/fss_embedded_list_read.c b/level_3/fss_embedded_list_read/c/fss_embedded_list_read.c index f97bd26..d2ce54b 100644 --- a/level_3/fss_embedded_list_read/c/fss_embedded_list_read.c +++ b/level_3/fss_embedded_list_read/c/fss_embedded_list_read.c @@ -22,7 +22,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_embedded_list_write/c/fss_embedded_list_write.c b/level_3/fss_embedded_list_write/c/fss_embedded_list_write.c index a71bcf7..6a0891f 100644 --- a/level_3/fss_embedded_list_write/c/fss_embedded_list_write.c +++ b/level_3/fss_embedded_list_write/c/fss_embedded_list_write.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_extended_list_read/c/fss_extended_list_read.c b/level_3/fss_extended_list_read/c/fss_extended_list_read.c index e1c9630..6d76b4e 100644 --- a/level_3/fss_extended_list_read/c/fss_extended_list_read.c +++ b/level_3/fss_extended_list_read/c/fss_extended_list_read.c @@ -22,7 +22,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_extended_list_write/c/fss_extended_list_write.c b/level_3/fss_extended_list_write/c/fss_extended_list_write.c index 518478f..d546e5d 100644 --- a/level_3/fss_extended_list_write/c/fss_extended_list_write.c +++ b/level_3/fss_extended_list_write/c/fss_extended_list_write.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_extended_read/c/fss_extended_read.c b/level_3/fss_extended_read/c/fss_extended_read.c index 180896e..2268be3 100644 --- a/level_3/fss_extended_read/c/fss_extended_read.c +++ b/level_3/fss_extended_read/c/fss_extended_read.c @@ -22,7 +22,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_extended_write/c/fss_extended_write.c b/level_3/fss_extended_write/c/fss_extended_write.c index f3fdd82..8867ced 100644 --- a/level_3/fss_extended_write/c/fss_extended_write.c +++ b/level_3/fss_extended_write/c/fss_extended_write.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_identify/c/fss_identify.c b/level_3/fss_identify/c/fss_identify.c index a54271e..840c432 100644 --- a/level_3/fss_identify/c/fss_identify.c +++ b/level_3/fss_identify/c/fss_identify.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_payload_read/c/fss_payload_read.c b/level_3/fss_payload_read/c/fss_payload_read.c index 9bd671a..9de434a 100644 --- a/level_3/fss_payload_read/c/fss_payload_read.c +++ b/level_3/fss_payload_read/c/fss_payload_read.c @@ -31,7 +31,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_payload_write/c/fss_payload_write.c b/level_3/fss_payload_write/c/fss_payload_write.c index 5977387..da708af 100644 --- a/level_3/fss_payload_write/c/fss_payload_write.c +++ b/level_3/fss_payload_write/c/fss_payload_write.c @@ -30,7 +30,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/fss_status_code/c/fss_status_code.c b/level_3/fss_status_code/c/fss_status_code.c index 03410ef..ae35807 100644 --- a/level_3/fss_status_code/c/fss_status_code.c +++ b/level_3/fss_status_code/c/fss_status_code.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/iki_read/c/iki_read.c b/level_3/iki_read/c/iki_read.c index 5ddd463..327f660 100644 --- a/level_3/iki_read/c/iki_read.c +++ b/level_3/iki_read/c/iki_read.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/iki_write/c/iki_write.c b/level_3/iki_write/c/iki_write.c index 2d495d9..49f9fa3 100644 --- a/level_3/iki_write/c/iki_write.c +++ b/level_3/iki_write/c/iki_write.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/status_code/c/status_code.c b/level_3/status_code/c/status_code.c index f9e3612..399f924 100644 --- a/level_3/status_code/c/status_code.c +++ b/level_3/status_code/c/status_code.c @@ -21,7 +21,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/utf8/c/utf8.c b/level_3/utf8/c/utf8.c index 318a429..bc137c6 100644 --- a/level_3/utf8/c/utf8.c +++ b/level_3/utf8/c/utf8.c @@ -24,7 +24,7 @@ extern "C" { #endif // _di_detailed_copyright_ fl_print_format("%rSource code license lgpl-2.1-or-later.%r", file.stream, f_string_eol_s, f_string_eol_s); - fl_print_format("Standard and specification license open-standard-license-1.0.%r", file.stream, f_string_eol_s); + fl_print_format("Standard and specification license open-standard-license-1.0-or-later.%r", file.stream, f_string_eol_s); fl_print_format("Documentation license cc-by-sa-4.0.%r%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); diff --git a/level_3/utf8/specifications/output.txt b/level_3/utf8/specifications/output.txt index da78256..400f294 100644 --- a/level_3/utf8/specifications/output.txt +++ b/level_3/utf8/specifications/output.txt @@ -1,6 +1,6 @@ # fss-0002 # -# license: open-standard-license-1.0 +# license: open-standard-license-1.0-or-later # Output Specification: diff --git a/specifications/fss-0000.txt b/specifications/fss-0000.txt index a1f2203..86848d7 100644 --- a/specifications/fss-0000.txt +++ b/specifications/fss-0000.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/01/15 # # This file (assumed to be named fss-0000.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0001.txt b/specifications/fss-0001.txt index c779c54..388ffee 100644 --- a/specifications/fss-0001.txt +++ b/specifications/fss-0001.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/01/15 # # This file (assumed to be named fss-0001.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0002.txt b/specifications/fss-0002.txt index 0b0d50c..715f73b 100644 --- a/specifications/fss-0002.txt +++ b/specifications/fss-0002.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/01/15 # # This file (assumed to be named fss-0002.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0003.txt b/specifications/fss-0003.txt index 6a3954c..652d598 100644 --- a/specifications/fss-0003.txt +++ b/specifications/fss-0003.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/01/15 # # This file (assumed to be named fss-0003.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0004.txt b/specifications/fss-0004.txt index cd75c6b..32adee4 100644 --- a/specifications/fss-0004.txt +++ b/specifications/fss-0004.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-0004.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0005.txt b/specifications/fss-0005.txt index 011a99d..deaed3d 100644 --- a/specifications/fss-0005.txt +++ b/specifications/fss-0005.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-0005.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0006.txt b/specifications/fss-0006.txt index ea5dd62..417a4c7 100644 --- a/specifications/fss-0006.txt +++ b/specifications/fss-0006.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-0006.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0007.txt b/specifications/fss-0007.txt index 7fb5d8e..d420bca 100644 --- a/specifications/fss-0007.txt +++ b/specifications/fss-0007.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-0007.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0008.txt b/specifications/fss-0008.txt index 937f9c6..3409cf5 100644 --- a/specifications/fss-0008.txt +++ b/specifications/fss-0008.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-0008.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0009.txt b/specifications/fss-0009.txt index 740bb9a..b63f688 100644 --- a/specifications/fss-0009.txt +++ b/specifications/fss-0009.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-0009.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-000a.txt b/specifications/fss-000a.txt index da6c0e7..32f8042 100644 --- a/specifications/fss-000a.txt +++ b/specifications/fss-000a.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-000a.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-000b.txt b/specifications/fss-000b.txt index 4de2fef..55a53c1 100644 --- a/specifications/fss-000b.txt +++ b/specifications/fss-000b.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-000b.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-000c.txt b/specifications/fss-000c.txt index c2bd010..8180e61 100644 --- a/specifications/fss-000c.txt +++ b/specifications/fss-000c.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-000c.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-000d.txt b/specifications/fss-000d.txt index 1924521..899a263 100644 --- a/specifications/fss-000d.txt +++ b/specifications/fss-000d.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named fss-000d.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-000e.txt b/specifications/fss-000e.txt index 141f36a..1e56359 100644 --- a/specifications/fss-000e.txt +++ b/specifications/fss-000e.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/03/12 # # This file (assumed to be named fss-000e.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-000f.txt b/specifications/fss-000f.txt index 1451834..715914c 100644 --- a/specifications/fss-000f.txt +++ b/specifications/fss-000f.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/11/14 # # This file (assumed to be named fss-000f.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss-0010.txt b/specifications/fss-0010.txt index 963151d..8e52160 100644 --- a/specifications/fss-0010.txt +++ b/specifications/fss-0010.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/16 # # This file (assumed to be named fss-0010.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/fss.txt b/specifications/fss.txt index 4e661f1..b0ba607 100644 --- a/specifications/fss.txt +++ b/specifications/fss.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/01/15 # # This file (assumed to be named fss.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/iki-0000.txt b/specifications/iki-0000.txt index d7edca0..68213c4 100644 --- a/specifications/iki-0000.txt +++ b/specifications/iki-0000.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named iki-0000.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/iki-0001.txt b/specifications/iki-0001.txt index 4a8b140..df33095 100644 --- a/specifications/iki-0001.txt +++ b/specifications/iki-0001.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named iki-0001.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/iki-0002.txt b/specifications/iki-0002.txt index 43eface..21ed10f 100644 --- a/specifications/iki-0002.txt +++ b/specifications/iki-0002.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/07/14 # # This file (assumed to be named iki-0002.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/iki.txt b/specifications/iki.txt index a6c4fea..8c91842 100644 --- a/specifications/iki.txt +++ b/specifications/iki.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2024/03/29 # # This file (assumed to be named iki.txt) can be more easily read using the following iki_read commands: diff --git a/specifications/time.txt b/specifications/time.txt index f0aaa59..3a0ae79 100644 --- a/specifications/time.txt +++ b/specifications/time.txt @@ -1,6 +1,6 @@ # fss-0002 iki-0000 # -# license open-standard-license-1.0 +# license open-standard-license-1.0-or-later # version 2023/12/16 # # This file (assumed to be named time.txt) can be more easily read using the following iki_read commands: -- 1.8.3.1