diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-04-22 23:17:08 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-04-22 23:17:08 +0000 |
commit | d8e6823de0465fd8a53d7c1d06760ee37a278df5 (patch) | |
tree | 1575411c6b69943ee72d7be4744ed2855c6e48d4 /src/modules | |
parent | c99ec633b3365c68420e4d567d7797bd5e709e28 (diff) |
update some comments.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6830 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_services_account.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_services_account.cpp b/src/modules/m_services_account.cpp index 8f5b830f2..04d5751ec 100644 --- a/src/modules/m_services_account.cpp +++ b/src/modules/m_services_account.cpp @@ -235,7 +235,7 @@ class ModuleServicesAccount : public Module user->GetExt("accountname", account); if (account) { - // atheme puts a space on this at logout, trim it + // remove any accidental leading/trailing spaces trim(*account); // call this function in the linking module, let it format the data how it @@ -305,7 +305,7 @@ class ModuleServicesAccount : public Module if (!dest->GetExt("accountname", text)) { text = new std::string(extdata); - // atheme puts a space on this at logout, trim it + // remove any accidental leading/trailing spaces trim(*text); dest->Extend("accountname", text); } |