The branch, master has been updated
via 99c95fc libsmb: call directly tevent_req_simple_finish_ntstatus
from bf33239 Fix warnings and one compile error caused by newer gcc 4.7.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 99c95fc98309a7aa08cfc37c4de5105d90696b7a
Author: Matthieu Patou <[email protected]>
Date: Sun May 5 14:53:40 2013 -0700
libsmb: call directly tevent_req_simple_finish_ntstatus
The CC compiler on openindiana is not pleased with a void function doing
a return of another void function.
It should help the build of openindiana on the buildfarm
Signed-off-by: Matthieu Patou <[email protected]>
Reviewed-by: Stefan Metzmacher <[email protected]>
Autobuild-User(master): Stefan Metzmacher <[email protected]>
Autobuild-Date(master): Mon May 6 08:35:10 CEST 2013 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
source3/libsmb/cliconnect.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c
index 3242d8c..7179c4f 100644
--- a/source3/libsmb/cliconnect.c
+++ b/source3/libsmb/cliconnect.c
@@ -2687,13 +2687,13 @@ static struct tevent_req *cli_tree_connect_send(
static void cli_tree_connect_smb2_done(struct tevent_req *subreq)
{
- return tevent_req_simple_finish_ntstatus(
+ tevent_req_simple_finish_ntstatus(
subreq, smb2cli_tcon_recv(subreq));
}
static void cli_tree_connect_andx_done(struct tevent_req *subreq)
{
- return tevent_req_simple_finish_ntstatus(
+ tevent_req_simple_finish_ntstatus(
subreq, cli_tcon_andx_recv(subreq));
}
--
Samba Shared Repository