summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/extra/m_sqlite.cpp2
-rw-r--r--modules/protocol/inspircd20.cpp8
-rw-r--r--modules/protocol/inspircd3.cpp6
-rwxr-xr-x[-rw-r--r--]src/tools/geoipupdate.sh2
4 files changed, 9 insertions, 9 deletions
diff --git a/modules/extra/m_sqlite.cpp b/modules/extra/m_sqlite.cpp
index f6a98f05a..49e638396 100644
--- a/modules/extra/m_sqlite.cpp
+++ b/modules/extra/m_sqlite.cpp
@@ -15,7 +15,7 @@
using namespace SQL;
-/* SQLite3 API, based from InspiRCd */
+/* SQLite3 API, based from InspIRCd */
/** A SQLite result
*/
diff --git a/modules/protocol/inspircd20.cpp b/modules/protocol/inspircd20.cpp
index dc146d639..47d8cca55 100644
--- a/modules/protocol/inspircd20.cpp
+++ b/modules/protocol/inspircd20.cpp
@@ -1,4 +1,4 @@
-/* Inspircd 2.0 functions
+/* InspIRCd 2.0 functions
*
* (C) 2003-2019 Anope Team
* Contact us at team@anope.org
@@ -227,10 +227,10 @@ namespace InspIRCdExtban
}
};
- class FinerprintMatcher : public InspIRCdExtBan
+ class FingerprintMatcher : public InspIRCdExtBan
{
public:
- FinerprintMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : InspIRCdExtBan(mname, mbase, c)
+ FingerprintMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : InspIRCdExtBan(mname, mbase, c)
{
}
@@ -529,7 +529,7 @@ struct IRCDMessageCapab : Message::Capab
else if (modename.equals_cs("sslonly"))
{
cm = new ChannelMode("SSL", modechar[0]);
- ModeManager::AddChannelMode(new InspIRCdExtban::FinerprintMatcher("SSLBAN", "BAN", 'z'));
+ ModeManager::AddChannelMode(new InspIRCdExtban::FingerprintMatcher("SSLBAN", "BAN", 'z'));
}
else if (modename.equals_cs("stripcolor"))
{
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp
index 1df97d11a..17b40ed99 100644
--- a/modules/protocol/inspircd3.cpp
+++ b/modules/protocol/inspircd3.cpp
@@ -617,10 +617,10 @@ namespace InspIRCdExtban
}
};
- class FinerprintMatcher : public InspIRCdExtBan
+ class FingerprintMatcher : public InspIRCdExtBan
{
public:
- FinerprintMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : InspIRCdExtBan(mname, mbase, c)
+ FingerprintMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : InspIRCdExtBan(mname, mbase, c)
{
}
@@ -981,7 +981,7 @@ struct IRCDMessageCapab : Message::Capab
else if (mode.name.equals_cs("sslonly"))
{
cm = new ChannelMode("SSL", mode.letter);
- ModeManager::AddChannelMode(new InspIRCdExtban::FinerprintMatcher("SSLBAN", "BAN", 'z'));
+ ModeManager::AddChannelMode(new InspIRCdExtban::FingerprintMatcher("SSLBAN", "BAN", 'z'));
}
else if (mode.name.equals_cs("stripcolor"))
{
diff --git a/src/tools/geoipupdate.sh b/src/tools/geoipupdate.sh
index 4e76d493c..70ae26f67 100644..100755
--- a/src/tools/geoipupdate.sh
+++ b/src/tools/geoipupdate.sh
@@ -53,7 +53,7 @@ if test $geoip_database = "country"; then
echo "Unpacking..."
unzip -jo GeoIPCountryCSV.zip
rm GeoIPCountryCSV.zip
- echo "Converting to UFT-8..."
+ echo "Converting to UTF-8..."
iconv -f ISO-8859-1 -t UTF-8 GeoIPCountryWhois.csv -o $prefix"geoip_country.csv"
rm GeoIPCountryWhois.csv
echo "Importing..."