mirror of
https://github.com/znc/znc.git
synced 2026-08-08 09:52:55 +02:00
Fixed some trailing whitespace / tab mixups and adjusted MD5.cpp to our coding guidelines.
This commit includes absolutely no changes in functionality, only pure cleanup. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1215 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
+2
-2
@@ -143,7 +143,7 @@ CString::CString(double i) : string() { stringstream s; s << i; *this = s.str();
|
||||
CString::CString(float i) : string() { stringstream s; s << i; *this = s.str(); }
|
||||
|
||||
inline unsigned char* CString::strnchr(const unsigned char* src, unsigned char c, unsigned int iMaxBytes, unsigned char* pFill, unsigned int* piCount) const {
|
||||
for (unsigned int a = 0; a < iMaxBytes && *src; a++, src++) {
|
||||
for (unsigned int a = 0; a < iMaxBytes && *src; a++, src++) {
|
||||
if (pFill) {
|
||||
pFill[a] = *src;
|
||||
}
|
||||
@@ -169,7 +169,7 @@ inline unsigned char* CString::strnchr(const unsigned char* src, unsigned char c
|
||||
*piCount = 0;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int CString::CaseCmp(const CString& s, u_long uLen) const {
|
||||
|
||||
Reference in New Issue
Block a user