more OSF1 changes as well as changes to allow us to use the standard
[tprouty/samba.git] / source / smbwrapper / realcalls.c
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
6    
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.
11    
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.
16    
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.
20 */
21
22 #include "includes.h"
23
24 #ifdef REPLACE_UTIME
25 int real_utime(const char *name, struct utimbuf *buf)
26 {
27         struct timeval tv[2];
28         
29         tv[0].tv_sec = buf->actime;
30         tv[0].tv_usec = 0;
31         tv[1].tv_sec = buf->modtime;
32         tv[1].tv_usec = 0;
33         
34         return real_utimes(name, &tv[0]);
35 }
36 #endif
37
38 #ifdef REPLACE_UTIMES
39 int real_utimes(const char *name, struct timeval tv[2])
40 {
41         struct utimbuf buf;
42
43         buf.actime = tv[0].tv_sec;
44         buf.modtime = tv[1].tv_sec;
45         
46         return real_utime(name, &buf);
47 }
48 #endif