repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 29d448ed637968359394b1189f3f2be8076f1134:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 29d448ed637968359394b1189f3f2be8076f1134
Author: Florian Westphal 
Date:   Sat May 1 20:29:14 2010 +0200

    doc/SSL: remove line continuation marker

    some people got confused by the '\' line continuation marker,
    thus put everything in a single line, even if the line gets overly long.

diff --git a/doc/SSL.txt b/doc/SSL.txt
index 7207f1bf6c21ce61ca488e94c8303df1557c67ed..
index ..394894a2a103e8d6ccaa74258d40c35b3890e518 100644
--- a/doc/SSL.txt
+++ b/doc/SSL.txt
@@ -49,8 +49,7 @@ Creating a self-signed certificate
 OpenSSL:

 Creating a self-signed certificate and key:
- $ openssl req -newkey rsa:2048 -x509 -keyout server-key.pem \
-	-out server-cert.pem -days 1461
+ $ openssl req -newkey rsa:2048 -x509 -keyout server-key.pem -out server-cert.pem -days 1461
 Create DH parameters (optional):
  $ openssl dhparam -2 -out dhparams.pem 2048

@@ -58,8 +57,7 @@ GnuTLS:

 Creating a self-signed certificate and key:
  $ certtool --generate-privkey --bits 2048 --outfile server-key.pem
- $ certtool --generate-self-signed --load-privkey server-key.pem \
-	 --outfile server-cert.pem
+ $ certtool --generate-self-signed --load-privkey server-key.pem --outfile server-cert.pem
 Create DH parameters (optional):
  $ certtool  --generate-dh-params --bits 2048 --outfile dhparams.pem

-----END OF PAGE-----