Correct errno return for setsockopt(), by Thayne Harbaugh.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3839 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2007-12-18 02:41:04 +00:00
parent c02f499e10
commit 6fa13c170c
1 changed files with 1 additions and 1 deletions

View File

@ -906,7 +906,7 @@ static abi_long do_setsockopt(int sockfd, int level, int optname,
default:
unimplemented:
gemu_log("Unsupported setsockopt level=%d optname=%d \n", level, optname);
ret = -TARGET_ENOSYS;
ret = -TARGET_ENOPROTOOPT;
}
return ret;
}