From: Ralph Boehme Date: Fri, 11 Oct 2024 12:05:08 +0000 (+0200) Subject: smbd: smbd_do_setfilepathinfo(): one arg per line X-Git-Tag: tdb-1.4.13~748 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddd8ca35b28578bb92cb7c5b97201c1ec1498f05;p=thirdparty%2Fsamba.git smbd: smbd_do_setfilepathinfo(): one arg per line BUG: https://bugzilla.samba.org/show_bug.cgi?id=15608 Signed-off-by: Ralph Boehme Reviewed-by: Stefan Metzmacher --- diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index 8180f336893..8b9d663f28d 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -145,7 +145,8 @@ NTSTATUS smbd_do_setfilepathinfo(connection_struct *conn, uint16_t info_level, files_struct *fsp, struct smb_filename *smb_fname, - char **ppdata, int total_data, + char **ppdata, + int total_data, int *ret_data_size); NTSTATUS smbd_do_qfsinfo(struct smbXsrv_connection *xconn, diff --git a/source3/smbd/smb2_trans2.c b/source3/smbd/smb2_trans2.c index b7b8781a60e..21551cb93d8 100644 --- a/source3/smbd/smb2_trans2.c +++ b/source3/smbd/smb2_trans2.c @@ -5015,7 +5015,8 @@ NTSTATUS smbd_do_setfilepathinfo(connection_struct *conn, uint16_t info_level, files_struct *fsp, struct smb_filename *smb_fname, - char **ppdata, int total_data, + char **ppdata, + int total_data, int *ret_data_size) { char *pdata = *ppdata;