diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-01 00:07:16 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-01 00:07:16 +0100 |
commit | 99f021d0ef5f1e8e7793c28f1c5ed03912218142 (patch) | |
tree | d134c58470c76b2d85db0816a2b69126c25a8aa3 | |
parent | fa7ddc78b8da8265096b1cc45471e1c7c96ac994 (diff) | |
download | samba-99f021d0ef5f1e8e7793c28f1c5ed03912218142.tar.gz samba-99f021d0ef5f1e8e7793c28f1c5ed03912218142.tar.bz2 samba-99f021d0ef5f1e8e7793c28f1c5ed03912218142.zip |
Fix the build on Solaris CC
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index 0a4d94fedc..90fa49f451 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -1184,7 +1184,7 @@ static void np_write_done(struct async_req *subreq) async_req_error(req, status); return; } - return async_req_done(req); + async_req_done(req); } NTSTATUS np_write_recv(struct async_req *req, ssize_t *pnwritten) |