[#5033] Fix typo in exception message introduced by acbca192bd

Motivation:

I introduced a typo as part of acbca192bd.

Modifications:

Fix typo

Result:

Correct message in exception.
This commit is contained in:
Norman Maurer 2016-03-24 16:23:17 +01:00
parent b6c320bd0a
commit ad85014110

View File

@ -300,7 +300,7 @@ int netty_unix_socket_getOption(JNIEnv* env, jint fd, int level, int optname, vo
if (err == EBADF) {
netty_unix_errors_throwClosedChannelException(env);
} else {
netty_unix_errors_throwChannelExceptionErrorNo(env, "setsockopt() failed: ", err);
netty_unix_errors_throwChannelExceptionErrorNo(env, "getsockopt() failed: ", err);
}
}
return rc;