mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s3:vfs:preopen: fix O3 error unused result of write
(void) cast is not enough. Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Christian Ambach <ambi@samba.org>
This commit is contained in:
parent
1f04687e4c
commit
ac64aab40e
@ -21,6 +21,7 @@
|
||||
#include "includes.h"
|
||||
#include "system/filesys.h"
|
||||
#include "smbd/smbd.h"
|
||||
#include "lib/util/sys_rw.h"
|
||||
#include "lib/util/sys_rw_data.h"
|
||||
|
||||
struct preopen_state;
|
||||
@ -185,7 +186,7 @@ static bool preopen_helper_open_one(int sock_fd, char **pnamebuf,
|
||||
close(fd);
|
||||
|
||||
done:
|
||||
(void)write(sock_fd, &c, 1);
|
||||
sys_write_v(sock_fd, &c, 1);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user