Clarify error message about IPv6 socket creation in ipa-cldap plugin

https://fedorahosted.org/freeipa/ticket/4056
This commit is contained in:
Petr Spacek 2013-12-03 15:10:26 +01:00 committed by Martin Kosek
parent a1f32fa936
commit 2348e0fab7

View File

@ -147,7 +147,8 @@ static int ipa_cldap_init_service(Slapi_PBlock *pb,
ctx->sd = socket(PF_INET6, SOCK_DGRAM, 0);
if (ctx->sd == -1) {
LOG_FATAL("Failed to create socket\n");
LOG_FATAL("Failed to create IPv6 socket: IPv6 support in kernel "
"is required\n");
ret = EIO;
goto done;
}