summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2005-07-19 01:40:29 +0000
committerderaadt <deraadt@openbsd.org>2005-07-19 01:40:29 +0000
commit3c34d5cd2f1e1208549769fd3448139962a86d5c (patch)
tree7580b19bf1df6dd74982b7c3f14a75398ddbabbf
parentif the user specifies the -Q flag (really quiet) we also (diff)
downloadwireguard-openbsd-3c34d5cd2f1e1208549769fd3448139962a86d5c.tar.xz
wireguard-openbsd-3c34d5cd2f1e1208549769fd3448139962a86d5c.zip
spacing
-rw-r--r--usr.bin/cvs/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/util.c b/usr.bin/cvs/util.c
index 9bed15887e3..79eacb887cf 100644
--- a/usr.bin/cvs/util.c
+++ b/usr.bin/cvs/util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: util.c,v 1.35 2005/07/13 16:20:44 xsa Exp $ */
+/* $OpenBSD: util.c,v 1.36 2005/07/19 01:40:29 deraadt Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -727,7 +727,7 @@ cvs_rcs_getpath(CVSFILE *file, char *buf, size_t len)
root = CVS_DIR_ROOT(file);
repo = CVS_DIR_REPO(file);
- l = snprintf(buf, len, "%s/%s/%s%s",
+ l = snprintf(buf, len, "%s/%s/%s%s",
root->cr_dir, repo, file->cf_name, RCS_FILE_EXT);
if (l == -1 || l >= (int)len) {
errno = ENAMETOOLONG;