diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-08 07:22:59 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-08 07:22:59 +0000 |
commit | 7c920d704939240b2ffb4e71129b91e5e0ce52ba (patch) | |
tree | 7ba63550e61d4d873af18e30d1e882971f9ca129 /usr.bin | |
parent | 7324e5fc2a2f5b9f74b607acb457b96ce43f893e (diff) |
display in local mode only the mtime of a file stored in the Entries file;
Ok joris@.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/status.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 8febd9f5d0f..079a94f1fa1 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.34 2005/07/07 15:52:26 joris Exp $ */ +/* $OpenBSD: status.c,v 1.35 2005/07/08 07:22:58 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -179,7 +179,9 @@ static int cvs_status_local(CVSFILE *cf, void *arg) { int len; - char buf[MAXNAMLEN], fpath[MAXPATHLEN], numbuf[64], rcspath[MAXPATHLEN]; + size_t n; + char buf[MAXNAMLEN], fpath[MAXPATHLEN], rcspath[MAXPATHLEN]; + char numbuf[64], timebuf[32]; char *repo; RCSFILE *rf; struct cvsroot *root; @@ -223,6 +225,18 @@ cvs_status_local(CVSFILE *cf, void *arg) } else { len = snprintf(buf, sizeof(buf), "%s", rcsnum_tostr(cf->cf_lrev, buf, sizeof(buf))); + + /* Display etime in local mode only. */ + if (cvs_cmdop != CVS_OP_SERVER) { + strlcat(buf, "\t", sizeof(buf)); + + ctime_r(&(cf->cf_etime), timebuf); + n = strlen(timebuf); + if ((n > 0) && (timebuf[n - 1] == '\n')) + timebuf[--n] = '\0'; + + strlcat(buf, timebuf, sizeof(buf)); + } } if (len == -1 || len >= (int)sizeof(buf)) { |