diff --git a/Cargo.toml b/Cargo.toml index 05d4455..9748d15 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ -# Copyright 2018-2023 Koutheir Attouchi. +# Copyright 2018-2024 Koutheir Attouchi. # See the "LICENSE.txt" file at the top-level directory of this distribution. # -# Licensed under the the MIT license. This file may not be copied, modified, +# Licensed under the MIT license. This file may not be copied, modified, # or distributed except according to those terms. [package] diff --git a/README.md b/README.md index 7c65cdd..4fd3e3f 100755 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ needed by the analyzed files, which is given by the --libc parameter. # License -Copyright 2018-2023 Koutheir Attouchi. See the `LICENSE.txt` file +Copyright 2018-2024 Koutheir Attouchi. See the `LICENSE.txt` file at the top-level directory of this distribution. -Licensed under the the MIT license. +Licensed under the MIT license. This file may not be copied, modified, or distributed except according to those terms. diff --git a/src/archive/mod.rs b/src/archive/mod.rs index 748c0ac..944fb8a 100755 --- a/src/archive/mod.rs +++ b/src/archive/mod.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use log::{debug, warn}; diff --git a/src/cmdline.rs b/src/cmdline.rs index b58e415..5436de6 100755 --- a/src/cmdline.rs +++ b/src/cmdline.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use core::fmt; diff --git a/src/elf/checked_functions.rs b/src/elf/checked_functions.rs index a2f08b2..53e4e82 100755 --- a/src/elf/checked_functions.rs +++ b/src/elf/checked_functions.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. #[derive(Debug, Eq, PartialEq, Hash)] diff --git a/src/elf/mod.rs b/src/elf/mod.rs index f013fd1..3db771f 100755 --- a/src/elf/mod.rs +++ b/src/elf/mod.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. pub mod checked_functions; diff --git a/src/elf/needed_libc.rs b/src/elf/needed_libc.rs index 876b7b4..15839b1 100755 --- a/src/elf/needed_libc.rs +++ b/src/elf/needed_libc.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use std::collections::HashSet; diff --git a/src/errors.rs b/src/errors.rs index 61376ec..78b583b 100755 --- a/src/errors.rs +++ b/src/errors.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use std::path::PathBuf; diff --git a/src/main.rs b/src/main.rs index d5be82a..64d8641 100755 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. #![doc = include_str!("../README.md")] diff --git a/src/options/mod.rs b/src/options/mod.rs index c6f5108..8a07688 100755 --- a/src/options/mod.rs +++ b/src/options/mod.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. pub mod status; diff --git a/src/options/status.rs b/src/options/status.rs index 5afe3da..6c24519 100755 --- a/src/options/status.rs +++ b/src/options/status.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use core::marker::PhantomPinned; diff --git a/src/parser.rs b/src/parser.rs index 9e29b53..c04dfcc 100755 --- a/src/parser.rs +++ b/src/parser.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use core::marker::PhantomPinned; diff --git a/src/pe/mod.rs b/src/pe/mod.rs index 5334929..0e60297 100755 --- a/src/pe/mod.rs +++ b/src/pe/mod.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use core::mem; diff --git a/src/ui.rs b/src/ui.rs index 034fdf0..ecece12 100755 --- a/src/ui.rs +++ b/src/ui.rs @@ -1,7 +1,7 @@ -// Copyright 2018-2023 Koutheir Attouchi. +// Copyright 2018-2024 Koutheir Attouchi. // See the "LICENSE.txt" file at the top-level directory of this distribution. // -// Licensed under the the MIT license. This file may not be copied, modified, +// Licensed under the MIT license. This file may not be copied, modified, // or distributed except according to those terms. use std::sync::Arc;