diff options
author | Sam James <sam@gentoo.org> | 2023-03-24 03:45:37 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-03-26 13:35:54 +0200 |
commit | 9315b23e457de621464ed68481fd85a6b4007269 (patch) | |
tree | 7761296e99cfbfa77c79b09222113f8b2ee1a896 /eclass/git-r3.eclass | |
parent | fortran-2.eclass: fix spelling (diff) | |
download | gentoo-9315b23e457de621464ed68481fd85a6b4007269.tar.gz gentoo-9315b23e457de621464ed68481fd85a6b4007269.tar.bz2 gentoo-9315b23e457de621464ed68481fd85a6b4007269.zip |
git-r3.eclass: fix spelling
Thanks to codespell.
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/git-r3.eclass')
-rw-r--r-- | eclass/git-r3.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index 32f1129f86bc..e9fdf2ac3a42 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.eclass @@ -115,7 +115,7 @@ fi # read the manpage for git-clone(1). # # URIs should be using https:// whenever possible. http:// and git:// -# URIs are completely unsecured and their use (even if only as +# URIs are completely insecure and their use (even if only as # a fallback) renders the ebuild completely vulnerable to MITM attacks. # # Can be a whitespace-separated list or an array. @@ -533,7 +533,7 @@ git-r3_fetch() { local r for r in "${repos[@]}"; do if [[ ${r} == git:* || ${r} == http:* ]]; then - ewarn "git-r3: ${r%%:*} protocol is completely unsecure and may render the ebuild" + ewarn "git-r3: ${r%%:*} protocol is completely insecure and may render the ebuild" ewarn "easily susceptible to MITM attacks (even if used only as fallback). Please" ewarn "use https instead." ewarn "[URI: ${r}]" @@ -769,7 +769,7 @@ git-r3_fetch() { [[ ${success} ]] || die "Unable to fetch from any of EGIT_REPO_URI" # submodules can reference commits in any branch - # always use the 'mirror' mode to accomodate that, bug #503332 + # always use the 'mirror' mode to accommodate that, bug #503332 local EGIT_CLONE_TYPE=mirror # recursively fetch submodules |