summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2005-11-17 00:16:36 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2005-11-17 00:16:36 +0000
commite2667c13a9794f9efb060bf5f97336b914bb3c06 (patch)
treec8de1aaae788214a6fcf6d9c7cfe991e894293e0
parent7a128c87c5411f7ba5d7aacdea48ac6a5fb8bac8 (diff)
- split -d handling into function checkin_setrevdate()
-rw-r--r--usr.bin/rcs/ci.c38
1 files changed, 28 insertions, 10 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index b96872009ce..e7600aafdc5 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.60 2005/11/17 00:03:04 niallo Exp $ */
+/* $OpenBSD: ci.c,v 1.61 2005/11/17 00:16:35 niallo Exp $ */
/*
* Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -72,6 +72,7 @@ static char * checkin_getinput(const char *);
static char * checkin_getlogmsg(RCSNUM *, RCSNUM *);
static void checkin_init(struct checkin_params *);
static void checkin_revert(struct checkin_params *pb);
+static int checkin_setrevdate(struct checkin_params *pb);
void
checkin_usage(void)
@@ -325,15 +326,10 @@ checkin_main(int argc, char **argv)
* Set the date of the revision to be the last modification
* time of the working file if -d has no argument.
*/
- if (pb.date == DATE_MTIME) {
- if (stat(pb.filename, &sb) != 0) {
- cvs_log(LP_ERRNO, "failed to stat: `%s'",
- pb.filename);
- rcs_close(pb.file);
- continue;
- }
- pb.date = (time_t)sb.st_mtimespec.tv_sec;
- }
+ if (pb.date == DATE_MTIME
+ && (checkin_setrevdate(&pb) < 0))
+ continue;
+
/*
* Now add our new revision
@@ -675,3 +671,25 @@ checkin_checklock(struct checkin_params *pb)
}
return (0);
}
+
+/*
+ * checkin_setrevdate()
+ *
+ * Set the date of the revision to be the last modification
+ * time of the working file if -d has no argument.
+ *
+ * On success, return 0. On error return -1.
+ */
+static int
+checkin_setrevdate(struct checkin_params *pb)
+{
+ struct stat sb;
+ if (stat(pb->filename, &sb) != 0) {
+ cvs_log(LP_ERRNO, "failed to stat: `%s'",
+ pb->filename);
+ rcs_close(pb->file);
+ return (-1);
+ }
+ pb->date = (time_t)sb.st_mtimespec.tv_sec;
+ return (0);
+}