From bd627a1597253e03e14c2dc60a99cf7e57bc169c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 2 Aug 2007 20:56:40 +0000 Subject: r24144: Fix the build In a function returning void the "return;" needs to stand alone on some compilers (This used to be commit 28affcca8e22b9a147876a60fec28551256bcaa8) --- source3/smbd/trans2.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'source3/smbd/trans2.c') diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index b95c017b83..803a2eb306 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -3458,13 +3458,11 @@ static void call_trans2qfilepathinfo(connection_struct *conn, } if (IS_IPC(conn)) { - return call_trans2qpipeinfo(conn, req, - tran_call, - pparams, - total_params, - ppdata, - total_data, - max_data_bytes); + call_trans2qpipeinfo(conn, req, tran_call, + pparams, total_params, + ppdata, total_data, + max_data_bytes); + return; } fsp = file_fsp(SVAL(params,0)); -- cgit