diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-02-10 12:24:28 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-02-10 12:24:28 +0000 |
commit | 5e754d0af57b6846272f1562f18598c90a083ccd (patch) | |
tree | c50687a109ee859a747fd6e76db7b3354d19f1bd /usr.bin | |
parent | 49e48e8721fbffc030c2f9ea3d90f86bc5af8f7f (diff) |
fix ce_date declaration
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index e3daafc512b..0d9f3d2c9fc 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.159 2008/02/10 10:10:15 joris Exp $ */ +/* $OpenBSD: cvs.h,v 1.160 2008/02/10 12:24:27 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -268,7 +268,7 @@ struct cvs_ent { char *ce_name; char *ce_opts; char *ce_tag; - time_t *ce_date; + time_t ce_date; time_t ce_mtime; u_int16_t ce_type; u_int16_t ce_status; |