2
0
Fork 0

[openssl] fix error message for wrong listen option

This commit is contained in:
Stefan Bühler 2011-12-16 20:57:26 +01:00
parent dd4ed2c560
commit f98f9bb7b3
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ static gboolean openssl_setup(liServer *srv, liPlugin* p, liValue *val, gpointer
if (g_str_equal(htkey->str, "listen")) {
if (htval->type != LI_VALUE_STRING) {
ERROR(srv, "%s", "openssl pemfile expects a string as parameter");
ERROR(srv, "%s", "openssl listen expects a string as parameter");
return FALSE;
}
ipstr = htval->data.string;