diff options
author | Jeremy Allison <jra@samba.org> | 2001-09-05 20:01:12 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-09-05 20:01:12 +0000 |
commit | c7d1b06f31550289a864fd09165d3545f207b80e (patch) | |
tree | 7b8ca440190c37aed6d518d3971bc0a138b1bea7 /source/lib/util.c | |
parent | 6c08c74b2ed498b326c8829ac1f68988ab31d050 (diff) | |
download | samba-c7d1b06f31550289a864fd09165d3545f207b80e.tar.gz samba-c7d1b06f31550289a864fd09165d3545f207b80e.tar.xz samba-c7d1b06f31550289a864fd09165d3545f207b80e.zip |
Moved functionality into vfs finally.
Jeremy.
Diffstat (limited to 'source/lib/util.c')
-rw-r--r-- | source/lib/util.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/source/lib/util.c b/source/lib/util.c index 1fe96edd210..285fa3f3a1d 100644 --- a/source/lib/util.c +++ b/source/lib/util.c @@ -195,21 +195,6 @@ BOOL file_exist(char *fname,SMB_STRUCT_STAT *sbuf) } /******************************************************************* - Rename a unix file. -********************************************************************/ - -int file_rename(char *from, char *to) -{ - int rcode = rename (from, to); - - if (errno == EXDEV) { - /* Rename across filesystems needed. */ - rcode = copy_reg (from, to); - } - return rcode; -} - -/******************************************************************* Check a files mod time. ********************************************************************/ |