summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-08 21:09:41 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-08 21:09:41 +0000
commit100d586df2b5a5aadfc52cca5bb29682eac1b9b6 (patch)
treef9711c234ddbca091eb65b4a6199e63224a23809 /openbsd-compat/bsd-misc.c
parent5c98db50bfa18767693421aa0beaed8ac733f19f (diff)
- (bal) Correction to utimes() again.
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 60526be9d..1c1e43a52 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -24,7 +24,7 @@
24 24
25#include "includes.h" 25#include "includes.h"
26 26
27RCSID("$Id: bsd-misc.c,v 1.9 2002/07/03 23:50:00 mouring Exp $"); 27RCSID("$Id: bsd-misc.c,v 1.10 2002/07/08 21:09:41 mouring Exp $");
28 28
29char *get_progname(char *argv0) 29char *get_progname(char *argv0)
30{ 30{
@@ -93,8 +93,8 @@ int utimes(char *filename, struct timeval *tvp)
93{ 93{
94 struct utimbuf ub; 94 struct utimbuf ub;
95 95
96 ub.actime = tvp[0]->tv_sec; 96 ub.actime = tvp[0].tv_sec;
97 ub.modtime = tvp[1]->tv_usec; 97 ub.modtime = tvp[1].tv_sec;
98 98
99 return(utime(filename, &ub)); 99 return(utime(filename, &ub));
100} 100}