Author: vlendec Date: 2007-08-02 20:56:40 +0000 (Thu, 02 Aug 2007) New Revision: 24144
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24144 Log: Fix the build In a function returning void the "return;" needs to stand alone on some compilers Modified: branches/SAMBA_3_2/source/smbd/trans2.c Changeset: Modified: branches/SAMBA_3_2/source/smbd/trans2.c =================================================================== --- branches/SAMBA_3_2/source/smbd/trans2.c 2007-08-02 20:19:27 UTC (rev 24143) +++ branches/SAMBA_3_2/source/smbd/trans2.c 2007-08-02 20:56:40 UTC (rev 24144) @@ -3458,13 +3458,11 @@ } 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));
