1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

r24144: Fix the build

In a function returning void the "return;" needs to stand alone on some
compilers
This commit is contained in:
Volker Lendecke 2007-08-02 20:56:40 +00:00 committed by Gerald (Jerry) Carter
parent 0b84e29120
commit 28affcca8e

View File

@ -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));