diff options
| author | Markus Armbruster | 2014-09-19 09:27:04 +0200 |
|---|---|---|
| committer | Luiz Capitulino | 2014-09-26 19:18:38 +0200 |
| commit | dbe2a7a62a94edfcf28826a39fffcc237ac1864b (patch) | |
| tree | 9144acd830d42e1ca33a2ab09fe4d700e1d10b1e /include | |
| parent | qemu-iotests: Test missing "driver" key for blockdev-add (diff) | |
| download | qemu-dbe2a7a62a94edfcf28826a39fffcc237ac1864b.tar.gz qemu-dbe2a7a62a94edfcf28826a39fffcc237ac1864b.tar.xz qemu-dbe2a7a62a94edfcf28826a39fffcc237ac1864b.zip | |
qemu-socket: Polish errors for connect() and listen() failure
connect() doesn't "connect to socket", it connects a socket to an
address and, if it's of type SOCK_STREAM, initiates a connection.
Scratch "to".
listen() does "set socket to listening mode", but it sounds awkward.
Change to "listen on socket".
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/qapi/qmp/qerror.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qapi/qmp/qerror.h b/include/qapi/qmp/qerror.h index 902d1a7a18..774e75df3b 100644 --- a/include/qapi/qmp/qerror.h +++ b/include/qapi/qmp/qerror.h @@ -155,10 +155,10 @@ void qerror_report_err(Error *err); ERROR_CLASS_GENERIC_ERROR, "this feature or command is not currently supported" #define QERR_SOCKET_CONNECT_FAILED \ - ERROR_CLASS_GENERIC_ERROR, "Failed to connect to socket" + ERROR_CLASS_GENERIC_ERROR, "Failed to connect socket" #define QERR_SOCKET_LISTEN_FAILED \ - ERROR_CLASS_GENERIC_ERROR, "Failed to set socket to listening mode" + ERROR_CLASS_GENERIC_ERROR, "Failed to listen on socket" #define QERR_SOCKET_BIND_FAILED \ ERROR_CLASS_GENERIC_ERROR, "Failed to bind socket" |
