diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-01 16:22:09 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-01 16:22:09 +0000 |
commit | 2d6525f477624c60de736b4256208a465731e419 (patch) | |
tree | 41d4f5f7484ab17e4a50be54478d2143b0ef00c5 /source3/lib/doscalls.c | |
parent | 67638b8d2b59dc992280af934346a5a1ef5fe62d (diff) | |
download | samba-2d6525f477624c60de736b4256208a465731e419.tar.gz samba-2d6525f477624c60de736b4256208a465731e419.tar.bz2 samba-2d6525f477624c60de736b4256208a465731e419.zip |
fix to domain_namemap (domain, ntname wrong way round oops)
stupid compile errors with file_rename() call just created.
(This used to be commit f5cedb8c9618b83b63b5e2db867d238eebc7e13c)
Diffstat (limited to 'source3/lib/doscalls.c')
-rw-r--r-- | source3/lib/doscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/doscalls.c b/source3/lib/doscalls.c index 9cdb476d3d..b213ed81cd 100644 --- a/source3/lib/doscalls.c +++ b/source3/lib/doscalls.c @@ -143,7 +143,7 @@ int dos_utime(char *fname,struct utimbuf *times) <warrenb@hpcvscdp.cv.hp.com> **********************************************************/ -static int copy_reg(char *source, const char *dest) +int copy_reg(char *source, const char *dest) { SMB_STRUCT_STAT source_stats; int ifd; |