summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/ci.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r--usr.bin/rcs/ci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index c26ae4667af..dd1e46960ef 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.68 2005/11/23 14:21:53 xsa Exp $ */
+/* $OpenBSD: ci.c,v 1.69 2005/11/24 15:35:11 xsa Exp $ */
/*
* Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -822,7 +822,7 @@ checkin_choose_rcsfile(const char *filename)
strlcat(basepath, RCS_FILE_EXT, MAXPATHLEN);
} else {
/* <path>/<filename>,v */
- bzero(basepath, MAXPATHLEN);
+ memset(basepath, '\0', MAXPATHLEN);
strlcpy(basepath, fullpath, len);
strlcat(basepath, filename, MAXPATHLEN);
strlcat(basepath, RCS_FILE_EXT, MAXPATHLEN);