summaryrefslogtreecommitdiff
path: root/source3/smbd/dosmode.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-06-23 05:57:48 +0000
committerTim Potter <tpot@samba.org>2000-06-23 05:57:48 +0000
commit2a1dbb0acdc3acd837681e148729899fb0160836 (patch)
tree4722167c89b34ef467978427b18d4d846c3486cf /source3/smbd/dosmode.c
parentdd4c0901b6da73452d2d748cb425a8d715bc56c0 (diff)
downloadsamba-2a1dbb0acdc3acd837681e148729899fb0160836.tar.gz
samba-2a1dbb0acdc3acd837681e148729899fb0160836.tar.bz2
samba-2a1dbb0acdc3acd837681e148729899fb0160836.zip
Delete OriginalDir stuff.
(This used to be commit 3d0f1845c8cefccfabcfd35694264c1e5f52c3af)
Diffstat (limited to 'source3/smbd/dosmode.c')
-rw-r--r--source3/smbd/dosmode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c
index 5b077110bb..8e2382ee9f 100644
--- a/source3/smbd/dosmode.c
+++ b/source3/smbd/dosmode.c
@@ -270,9 +270,9 @@ int file_utime(connection_struct *conn, char *fname, struct utimbuf *times)
in_group(sb.st_gid,current_user.gid,
current_user.ngroups,current_user.groups)))) {
/* We are allowed to become root and change the filetime. */
- become_root(False);
+ become_root();
ret = conn->vfs_ops.utime(dos_to_unix(fname, False), times);
- unbecome_root(False);
+ unbecome_root();
}
}