1
0
Fork 0

changed text on startup

This commit is contained in:
Jan Steemann 2013-04-22 08:38:08 +02:00
parent ee0c4285ee
commit 4527348f71
1 changed files with 2 additions and 2 deletions

View File

@ -139,10 +139,10 @@ namespace triagens {
static const string getEncryptionName (const Endpoint::EncryptionType encryption) {
switch (encryption) {
case Endpoint::ENCRYPTION_SSL:
return "ssl";
return "ssl-encrypted";
case Endpoint::ENCRYPTION_NONE:
default:
return "tcp";
return "non-encrypted";
}
}