summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-09-01 20:17:16 +0000
committerJeremy Allison <jra@samba.org>1998-09-01 20:17:16 +0000
commit80ec5e4a4de434d267d7c8ca10a5e2627bce80f9 (patch)
tree9d2493cef7eae3f487fa8db8570302dabc3245ce /source3
parent18556274139cc5a00593471bd745354d98a35303 (diff)
downloadsamba-80ec5e4a4de434d267d7c8ca10a5e2627bce80f9.tar.gz
samba-80ec5e4a4de434d267d7c8ca10a5e2627bce80f9.tar.bz2
samba-80ec5e4a4de434d267d7c8ca10a5e2627bce80f9.zip
Missed one struct stat.
Jeremy. (This used to be commit 03ae657a36c986ba4248b297e64ec7898a1914e6)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c
index d3612f8b25..bc8860cdb9 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -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;