1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

r15737: fix a typos and comment

metze
(This used to be commit 1f50b2e053)
This commit is contained in:
Stefan Metzmacher
2006-05-20 09:38:59 +00:00
committed by Gerald (Jerry) Carter
parent 9ef33f5f5c
commit b77eaaa3bc
2 changed files with 3 additions and 3 deletions

View File

@ -1730,14 +1730,14 @@ enum smb_flush_level {RAW_FLUSH_FLUSH, RAW_FLUSH_ALL};
/* struct for SMBflush */
union smb_flush {
struct {
enum smb_ioctl_level level;
enum smb_flush_level level;
struct {
union smb_handle file;
} in;
} flush, generic;
struct {
enum smb_ioctl_level level;
enum smb_flush_level level;
} flush_all;
};

View File

@ -844,7 +844,7 @@ NTSTATUS smb_raw_chkpath(struct smbcli_tree *tree, union smb_chkpath *parms)
/****************************************************************************
flush a file - async send
a flush to fnum 0xFFFF will flush all files
a flush with RAW_FLUSH_ALL will flush all files
****************************************************************************/
struct smbcli_request *smb_raw_flush_send(struct smbcli_tree *tree, union smb_flush *parms)
{