summaryrefslogtreecommitdiff
path: root/apt-private
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2021-11-04 00:08:07 +0200
committerVille Skyttä <ville.skytta@iki.fi>2021-11-27 12:22:38 +0200
commit01eed4234440d82fc52c8186cf4268517bcd28bc (patch)
tree0a21bc964c35024494df59a1ee186520b61ca6eb /apt-private
parent2662f6f255a2f1fee25632dc7666d4153bf5248c (diff)
Spelling fixes
Diffstat (limited to 'apt-private')
-rw-r--r--apt-private/private-install.cc4
-rw-r--r--apt-private/private-install.h2
-rw-r--r--apt-private/private-source.cc4
3 files changed, 5 insertions, 5 deletions
diff --git a/apt-private/private-install.cc b/apt-private/private-install.cc
index aaf98539a..cffec30a8 100644
--- a/apt-private/private-install.cc
+++ b/apt-private/private-install.cc
@@ -692,7 +692,7 @@ bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, std::vector<PseudoPkg
if (Fix != NULL && _config->FindB("APT::Get::AutoSolving", true) == true)
{
- InstallAction.propergateReleaseCandiateSwitching(helper.selectedByRelease, c0out);
+ InstallAction.propagateReleaseCandidateSwitching(helper.selectedByRelease, c0out);
InstallAction.doAutoInstall();
}
@@ -1052,7 +1052,7 @@ void TryToInstall::operator() (pkgCache::VerIterator const &Ver) {
}
}
/*}}}*/
-bool TryToInstall::propergateReleaseCandiateSwitching(std::list<std::pair<pkgCache::VerIterator, std::string> > const &start, std::ostream &out)/*{{{*/
+bool TryToInstall::propagateReleaseCandidateSwitching(std::list<std::pair<pkgCache::VerIterator, std::string> > const &start, std::ostream &out)/*{{{*/
{
for (std::list<std::pair<pkgCache::VerIterator, std::string> >::const_iterator s = start.begin();
s != start.end(); ++s)
diff --git a/apt-private/private-install.h b/apt-private/private-install.h
index 20b585d15..e3df9ac89 100644
--- a/apt-private/private-install.h
+++ b/apt-private/private-install.h
@@ -60,7 +60,7 @@ struct TryToInstall {
FixBroken(FixBroken), AutoMarkChanged(0) {};
void operator() (pkgCache::VerIterator const &Ver);
- bool propergateReleaseCandiateSwitching(std::list<std::pair<pkgCache::VerIterator, std::string> > const &start, std::ostream &out);
+ bool propagateReleaseCandidateSwitching(std::list<std::pair<pkgCache::VerIterator, std::string> > const &start, std::ostream &out);
void doAutoInstall();
};
/*}}}*/
diff --git a/apt-private/private-source.cc b/apt-private/private-source.cc
index f3ee0e594..e007c542f 100644
--- a/apt-private/private-source.cc
+++ b/apt-private/private-source.cc
@@ -334,7 +334,7 @@ bool DoSource(CommandLine &CmdL)
// Dsc only mode only fetches .dsc files
bool const dscOnly = _config->FindB("APT::Get::Dsc-Only", false);
- // Load the requestd sources into the fetcher
+ // Load the requested sources into the fetcher
aptAcquireWithTextStatus Fetcher;
std::vector<std::string> UntrustedList;
for (const char **cmdl = CmdL.FileList + 1; *cmdl != 0; ++cmdl)
@@ -831,7 +831,7 @@ bool DoBuildDep(CommandLine &CmdL)
candSwitch.emplace_back(Pkg.VersionList(), pkg.release);
}
if (candSwitch.empty() == false)
- InstallAction.propergateReleaseCandiateSwitching(candSwitch, c0out);
+ InstallAction.propagateReleaseCandidateSwitching(candSwitch, c0out);
for (auto const &pkg: pseudoPkgs)
{
pkgCache::PkgIterator const Pkg = Cache->FindPkg(pkg.name, pkg.arch);