diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-13 22:58:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-13 22:58:00 +0300 |
commit | e63451b2ee9ebaaf49133c8647fee90acb3bfbc2 (patch) | |
tree | 5ffe17d84a51a5e3e2f300022e292b75da5d10a8 | |
parent | inherit parent's parameters in new processes (diff) | |
download | privilege-check-e63451b2ee9ebaaf49133c8647fee90acb3bfbc2.tar.gz privilege-check-e63451b2ee9ebaaf49133c8647fee90acb3bfbc2.zip |
rename the project
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/cmd_line.hpp | 5 | ||||
-rw-r--r-- | src/error.hpp | 4 | ||||
-rw-r--r-- | src/handle.hpp | 4 | ||||
-rw-r--r-- | src/main.cpp | 4 | ||||
-rw-r--r-- | src/os.hpp | 4 | ||||
-rw-r--r-- | src/process.hpp | 4 | ||||
-rw-r--r-- | src/resource.hpp | 4 | ||||
-rw-r--r-- | src/sid.hpp | 4 | ||||
-rw-r--r-- | src/string.hpp | 5 | ||||
-rw-r--r-- | src/token.hpp | 4 |
11 files changed, 28 insertions, 18 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7095f70..2625581 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is part of the "Privilege test" project. -# For details, see https://github.com/egor-tensin/privilege-test. +# This file is part of the "Privilege check" project. +# For details, see https://github.com/egor-tensin/privilege-check. # Distributed under the MIT License. project(privilege_test) diff --git a/src/cmd_line.hpp b/src/cmd_line.hpp index 3a65ec7..b7e1b70 100644 --- a/src/cmd_line.hpp +++ b/src/cmd_line.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/error.hpp b/src/error.hpp index 0c5b917..0eeb147 100644 --- a/src/error.hpp +++ b/src/error.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once diff --git a/src/handle.hpp b/src/handle.hpp index 415541b..80b6a06 100644 --- a/src/handle.hpp +++ b/src/handle.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once diff --git a/src/main.cpp b/src/main.cpp index 9d897b7..5e59ff0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #include "error.hpp" @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once diff --git a/src/process.hpp b/src/process.hpp index 6fbaf8a..6439d38 100644 --- a/src/process.hpp +++ b/src/process.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once diff --git a/src/resource.hpp b/src/resource.hpp index bd97c82..24fc2db 100644 --- a/src/resource.hpp +++ b/src/resource.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once diff --git a/src/sid.hpp b/src/sid.hpp index a8ee3aa..cf905a4 100644 --- a/src/sid.hpp +++ b/src/sid.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once diff --git a/src/string.hpp b/src/string.hpp index 3621ca6..3841b8c 100644 --- a/src/string.hpp +++ b/src/string.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. +// Distributed under the MIT License. + #pragma once #include <cctype> diff --git a/src/token.hpp b/src/token.hpp index e44ab00..042cd2b 100644 --- a/src/token.hpp +++ b/src/token.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "Privilege test" project. -// For details, see https://github.com/egor-tensin/privilege-test. +// This file is part of the "Privilege check" project. +// For details, see https://github.com/egor-tensin/privilege-check. // Distributed under the MIT License. #pragma once |