1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Missed one struct stat.

Jeremy.
(This used to be commit 03ae657a36c986ba4248b297e64ec7898a1914e6)
This commit is contained in:
Jeremy Allison 1998-09-01 20:17:16 +00:00
parent 1855627413
commit 80ec5e4a4d

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;