summaryrefslogtreecommitdiff
path: root/src/modules/extra/m_sqlauth.cpp
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-09 04:09:16 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-09 04:09:16 +0000
commit17a77470c62b54b7414f0cb6abd0ab2049fdbaee (patch)
tree752425b02ee197d13d4245444b5287e4cfdd38d0 /src/modules/extra/m_sqlauth.cpp
parenta8bdf9887f5be40fae774d8bea93e99b5a0932c5 (diff)
Fix some indenting.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9676 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_sqlauth.cpp')
-rw-r--r--src/modules/extra/m_sqlauth.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_sqlauth.cpp b/src/modules/extra/m_sqlauth.cpp
index bf367a583..db68e749f 100644
--- a/src/modules/extra/m_sqlauth.cpp
+++ b/src/modules/extra/m_sqlauth.cpp
@@ -87,7 +87,8 @@ public:
}
return 0;
}
- void SearchAndReplace(std::string& newline, const std::string &find, const std::string &replace)
+
+ void SearchAndReplace(std::string& newline, const std::string &find, const std::string &replace)
{
std::string::size_type x = newline.find(find);
while (x != std::string::npos)
@@ -99,7 +100,6 @@ public:
}
}
-
bool CheckCredentials(User* user)
{
std::string thisquery = freeformquery;