qrexec: fix compile warning
This commit is contained in:
parent
b0c90d9d6c
commit
9fe45aeae5
@ -251,7 +251,9 @@ void handle_server_exec_request(struct msg_header *hdr)
|
|||||||
* qrexec-client-vm process; but this data comes from qrexec-daemon
|
* qrexec-client-vm process; but this data comes from qrexec-daemon
|
||||||
* (which sends back what it got from us earlier), so it isn't critical.
|
* (which sends back what it got from us earlier), so it isn't critical.
|
||||||
*/
|
*/
|
||||||
write(client_fd, ¶ms, sizeof(params));
|
if (write(client_fd, ¶ms, sizeof(params)) < 0) {
|
||||||
|
/* ignore */
|
||||||
|
}
|
||||||
/* No need to send request_id (buf) - the client don't need it, there
|
/* No need to send request_id (buf) - the client don't need it, there
|
||||||
* is only meaningless (for the client) socket FD */
|
* is only meaningless (for the client) socket FD */
|
||||||
/* Register connection even if there was an error sending params to
|
/* Register connection even if there was an error sending params to
|
||||||
|
Loading…
Reference in New Issue
Block a user