diff options
-rw-r--r-- | usr.bin/cvs/rcs.c | 8 | ||||
-rw-r--r-- | usr.bin/cvs/util.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c index a21071d0890..6e74c8d1726 100644 --- a/usr.bin/cvs/rcs.c +++ b/usr.bin/cvs/rcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.c,v 1.95 2005/10/29 19:05:50 niallo Exp $ */ +/* $OpenBSD: rcs.c,v 1.96 2005/10/30 11:10:12 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -1362,7 +1362,7 @@ rcs_getrev(RCSFILE *rfp, RCSNUM *frev) * one). The <msg> argument specifies the log message for that revision, and * <date> specifies the revision's date (a value of -1 is * equivalent to using the current time). - * If <username> is NULL, set the author for this revision to the current user. + * If <username> is NULL, set the author for this revision to the current user. * Otherwise, set it to <username>. * Returns 0 on success, or -1 on failure. */ @@ -2841,7 +2841,7 @@ rcs_expand_keywords(char *rcsfile, struct rcs_delta *rdp, char *line, char *out, * rcs_deltatext_set() * * Set deltatext for <rev> in RCS file <rfp> to <dtext> - * Returns -1 on error, 0 on success. + * Returns -1 on error, 0 on success. */ int rcs_deltatext_set(RCSFILE *rfp, RCSNUM *rev, const char *dtext) @@ -2924,7 +2924,7 @@ rcs_state_set(RCSFILE *rfp, RCSNUM *rev, const char *state) * * Check if string <state> is valid. * - * Returns 0 if the string is valid, -1 otherwise. + * Returns 0 if the string is valid, -1 otherwise. */ int rcs_state_check(const char *state) diff --git a/usr.bin/cvs/util.c b/usr.bin/cvs/util.c index edf65d8059d..2a0f5add309 100644 --- a/usr.bin/cvs/util.c +++ b/usr.bin/cvs/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.54 2005/10/22 17:32:57 joris Exp $ */ +/* $OpenBSD: util.c,v 1.55 2005/10/30 11:10:12 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -802,7 +802,7 @@ cvs_rcs_getpath(CVSFILE *file, char *buf, size_t len) * cvs_write_tagfile() * * Write the CVS/Tag file for current directory. - */ + */ void cvs_write_tagfile(char *tag, char *date, int nb) { @@ -847,7 +847,7 @@ cvs_write_tagfile(char *tag, char *date, int nb) * If it contains a branch tag, sets <tagp>. * If it contains a date, sets <datep>. * If it contains a non-branch tag, sets <nbp>. - * + * * Returns nothing but an error message, and sets <tagp>, <datep> to NULL * and <nbp> to 0. */ |