提交 c02f499e 编写于 作者: T ths

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


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3838 c046a42c-6fe2-441c-8c8c-71466251a162
上级 3800af9e
......@@ -996,14 +996,15 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
}
break;
default:
goto unimplemented;
ret = -TARGET_ENOPROTOOPT;
break;
}
break;
default:
unimplemented:
gemu_log("getsockopt level=%d optname=%d not yet supported\n",
level, optname);
ret = -TARGET_ENOSYS;
ret = -TARGET_EOPNOTSUPP;
break;
}
return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册