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 | f5cedb8c9618b83b63b5e2db867d238eebc7e13c (patch) | |
tree | d2ca947606d548b9dc445e27b36a122b25b8382e /source/lib/doscalls.c | |
parent | 51c1c31768a92d9c57ee6c09b78419bcbc544f03 (diff) | |
download | samba-f5cedb8c9618b83b63b5e2db867d238eebc7e13c.tar.gz samba-f5cedb8c9618b83b63b5e2db867d238eebc7e13c.tar.xz samba-f5cedb8c9618b83b63b5e2db867d238eebc7e13c.zip |
fix to domain_namemap (domain, ntname wrong way round oops)
stupid compile errors with file_rename() call just created.
Diffstat (limited to 'source/lib/doscalls.c')
-rw-r--r-- | source/lib/doscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/doscalls.c b/source/lib/doscalls.c index 9cdb476d3d7..b213ed81cdb 100644 --- a/source/lib/doscalls.c +++ b/source/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; |