summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/util.c
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-12-30 16:47:37 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-12-30 16:47:37 +0000
commit0b75fabf2a362c8d46c563c1727856429c95590b (patch)
tree7ce59558027d8b470075e06ebe1ad33d091b898f /usr.bin/cvs/util.c
parentc652e17dc922f98dd69c8e12c38752bf5491bd30 (diff)
more code cleanup, ok niallo@ and xsa@
Diffstat (limited to 'usr.bin/cvs/util.c')
-rw-r--r--usr.bin/cvs/util.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/usr.bin/cvs/util.c b/usr.bin/cvs/util.c
index c912c7cc58d..922f865419e 100644
--- a/usr.bin/cvs/util.c
+++ b/usr.bin/cvs/util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: util.c,v 1.63 2005/12/24 19:07:52 xsa Exp $ */
+/* $OpenBSD: util.c,v 1.64 2005/12/30 16:47:36 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -124,19 +124,20 @@ cvs_readrepo(const char *dir, char *dst, size_t len)
* The CVS protocol specification states that any modes or mode types that are
* not recognized should be silently ignored. This function does not return
* an error in such cases, but will issue warnings.
- * Returns 0 on success, or -1 on failure.
*/
-int
+void
cvs_strtomode(const char *str, mode_t *mode)
{
char type;
+ size_t l;
mode_t m;
char buf[32], ms[4], *sp, *ep;
m = 0;
- if (strlcpy(buf, str, sizeof(buf)) >= sizeof(buf)) {
- return (-1);
- }
+ l = strlcpy(buf, str, sizeof(buf));
+ if (l >= sizeof(buf))
+ fatal("cvs_strtomode: string truncation");
+
sp = buf;
ep = sp;
@@ -174,8 +175,6 @@ cvs_strtomode(const char *str, mode_t *mode)
}
*mode = m;
-
- return (0);
}