diff options
-rw-r--r-- | usr.bin/cvs/file.c | 8 | ||||
-rw-r--r-- | usr.bin/cvs/status.c | 4 | ||||
-rw-r--r-- | usr.bin/cvs/util.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index 2adbde03098..bd3c98c0165 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.113 2005/08/14 19:49:18 xsa Exp $ */ +/* $OpenBSD: file.c,v 1.114 2005/08/17 08:35:53 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -481,7 +481,7 @@ cvs_file_getspec(char **fspec, int fsn, int flags, int (*cb)(CVSFILE *, void *), * the <freecf> argument is passed to cvs_file_getdir, if this is 1 * CVSFILE * structs will be free'd once we are done with them. */ -CVSFILE * +CVSFILE * cvs_file_loadinfo(char *path, int flags, int (*cb)(CVSFILE *, void *), void *arg, int freecf) { @@ -533,7 +533,7 @@ cvs_file_loadinfo(char *path, int flags, int (*cb)(CVSFILE *, void *), /* * No Entry available? fall back to stat(2)'ing the item, if - * that fails, assume a normal file. + * that fails, assume a normal file. */ if (ent == NULL) { if (stat(path, &st) == -1) @@ -752,7 +752,7 @@ cvs_load_dirinfo(CVSFILE *cf, int flags) return (0); return (-1); } - + /* if the CVS administrative directory exists, load the info */ l = snprintf(pbuf, sizeof(pbuf), "%s/" CVS_PATH_CVSDIR, fpath); if (l == -1 || l >= (int)sizeof(pbuf)) { diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 5d7c8a1e763..8c11a862eab 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.44 2005/08/08 11:37:41 xsa Exp $ */ +/* $OpenBSD: status.c,v 1.45 2005/08/17 08:35:53 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org> @@ -284,7 +284,7 @@ cvs_status_local(CVSFILE *cf, void *arg) sizeof(numbuf)); cvs_printf("\t%-25s\t(%s: %s)\n", - sym->rs_name, + sym->rs_name, RCSNUM_ISBRANCH(sym->rs_num) ? "branch" : "revision", numbuf); } diff --git a/usr.bin/cvs/util.c b/usr.bin/cvs/util.c index 9969a1a22d7..285a65b431c 100644 --- a/usr.bin/cvs/util.c +++ b/usr.bin/cvs/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.49 2005/08/12 14:41:54 xsa Exp $ */ +/* $OpenBSD: util.c,v 1.50 2005/08/17 08:35:53 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -506,7 +506,7 @@ cvs_exec(int argc, char **argv, int fds[3]) * Change to directory. * chdir() wrapper with an error message. * Returns 0 on success, or -1 on failure. - */ + */ int cvs_chdir(const char *path) { |