1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Missed one struct stat.

Jeremy.
This commit is contained in:
Jeremy Allison 0001-01-01 00:00:00 +00:00
parent 28aa182dbf
commit 03ae657a36

View File

@ -190,7 +190,7 @@ int sys_waitpid(pid_t pid,int *status,int options)
/*******************************************************************
don't forget lstat() that calls dos_to_unix.
********************************************************************/
int dos_lstat(char *fname,struct stat *sbuf)
int dos_lstat(char *fname,SMB_STRUCT_STAT *sbuf)
{
return(lstat(dos_to_unix(fname,False),sbuf));
}
@ -247,7 +247,7 @@ for rename across filesystems Patch from Warren Birnbaum
static int copy_reg(char *source, const char *dest)
{
struct stat source_stats;
SMB_STRUCT_STAT source_stats;
int ifd;
int ofd;
char *buf;