diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 15:57:26 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 15:57:26 +0000 |
commit | f59a8e323d46c73a65b0846179698e44b7ea8bc2 (patch) | |
tree | 10d2e80af670dc9969f2a9b093efe406770ba597 /usr.bin | |
parent | 951dd72856ac8c6133980934f4c1bd7b2e8345a4 (diff) |
Like i wrote in last commit, it's supposed to be sys/time.h, not sys/times.h.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index fec00d2f7bc..a5a2d71b9d2 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.96 2008/02/03 15:08:04 tobias Exp $ */ +/* $OpenBSD: client.c,v 1.97 2008/02/03 15:57:25 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -18,7 +18,7 @@ #include <sys/param.h> #include <sys/dirent.h> #include <sys/stat.h> -#include <sys/times.h> +#include <sys/time.h> #include <errno.h> #include <fcntl.h> |