few edits
[Samba.git] / source / smbwrapper / realcalls.c
blobaabde7fa87c4e2872f8b7fdd3ee58d10de9c0093
1 /*
2 Unix SMB/Netbios implementation.
3 Version 2.0
4 SMB wrapper functions for calls that syscall() can't do
5 Copyright (C) Andrew Tridgell 1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
23 #include "realcalls.h"
25 #ifdef REPLACE_UTIME
26 int real_utime(const char *name, struct utimbuf *buf)
28 struct timeval tv[2];
30 tv[0].tv_sec = buf->actime;
31 tv[0].tv_usec = 0;
32 tv[1].tv_sec = buf->modtime;
33 tv[1].tv_usec = 0;
35 return real_utimes(name, &tv[0]);
37 #endif
39 #ifdef REPLACE_UTIMES
40 int real_utimes(const char *name, struct timeval tv[2])
42 struct utimbuf buf;
44 buf.actime = tv[0].tv_sec;
45 buf.modtime = tv[1].tv_sec;
47 return real_utime(name, &buf);
49 #endif