diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2006-05-27 02:58:03 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2006-05-27 02:58:03 +0000 |
commit | d04b7b97de62bafdc7c4e59f33dc4c29f5c3778a (patch) | |
tree | ec2dffc37edb6b9cd605ca3c99f91b7bafd5b0bd /usr.bin | |
parent | 644a84b06c4c4ac69189cddccd1a148a04998a97 (diff) |
rcs_choosefile() no longer returns char *, it returns a file
descriptor; fix comment.
Improve spacing.
OK joris@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rcs/rcsutil.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/rcs/rcsutil.c b/usr.bin/rcs/rcsutil.c index 800833276a4..dbffca483c3 100644 --- a/usr.bin/rcs/rcsutil.c +++ b/usr.bin/rcs/rcsutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsutil.c,v 1.10 2006/05/09 12:31:27 ray Exp $ */ +/* $OpenBSD: rcsutil.c,v 1.11 2006/05/27 02:58:02 ray Exp $ */ /* * Copyright (c) 2005, 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> @@ -136,7 +136,7 @@ rcs_getopt(int argc, char **argv, const char *optstr) * should be. Tries each extension until a file is found. If no file * was found, returns a path with the first extension. * - * Returns pointer to a char array on success, NULL on failure. + * Opens and returns file descriptor to RCS file. */ int rcs_choosefile(const char *filename, char *out, size_t len) @@ -254,8 +254,7 @@ rcs_choosefile(const char *filename, char *out, size_t len) * `suffixes' should now be NUL separated, so the first * extension can be read just by reading `suffixes'. */ - if (strlcat(rcspath, suffixes, sizeof(rcspath)) >= - sizeof(rcspath)) + if (strlcat(rcspath, suffixes, sizeof(rcspath)) >= sizeof(rcspath)) errx(1, "rcs_choosefile: truncation"); xfree(suffixes); |