mirror of
https://github.com/znc/znc.git
synced 2026-08-10 19:02:51 +02:00
Remove useless spaces inside of braces "( stuff )"
This was generated via the following command:
cat <file> | \
tr "\n" "€"| \
sed -r 's/€[\t ]*\{€/ {€/g; s/\( */(/g; s/ *\)/)/g' | \
tr "€" "\n"
Thanks to SilverLeo for producing this mess :P
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1029 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -165,12 +165,12 @@ int main(int argc, char** argv) {
|
||||
if (bMakePem) {
|
||||
CZNC* pZNC = &CZNC::Get();
|
||||
pZNC->InitDirs("", sDataDir);
|
||||
pZNC->WritePemFile( bEncPem );
|
||||
pZNC->WritePemFile(bEncPem);
|
||||
|
||||
delete pZNC;
|
||||
return 0;
|
||||
}
|
||||
if( bEncPem && !bMakePem ) {
|
||||
if (bEncPem && !bMakePem) {
|
||||
CUtils::PrintError("--encrypt-pem should be used along with --makepem.");
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user