summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/cache.c
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2004-12-07 17:10:57 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2004-12-07 17:10:57 +0000
commit3dd0eeb90cc3cb05b003f511986aa48b242af672 (patch)
tree79eca74f76f32cb4adc73bf57472ab27577ef963 /usr.bin/cvs/cache.c
parent2348195e75220fe47d1af53445293fc2d0b616d4 (diff)
less whitespace, more pretty. ok jfb
Diffstat (limited to 'usr.bin/cvs/cache.c')
-rw-r--r--usr.bin/cvs/cache.c23
1 files changed, 9 insertions, 14 deletions
diff --git a/usr.bin/cvs/cache.c b/usr.bin/cvs/cache.c
index cdd0922c21e..e090ff36801 100644
--- a/usr.bin/cvs/cache.c
+++ b/usr.bin/cvs/cache.c
@@ -1,16 +1,16 @@
-/* $OpenBSD: cache.c,v 1.1 2004/07/13 22:02:40 jfb Exp $ */
+/* $OpenBSD: cache.c,v 1.2 2004/12/07 17:10:56 tedu Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
- * All rights reserved.
+ * All rights reserved.
*
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
*
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
- * derived from this software without specific prior written permission.
+ * derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
@@ -21,7 +21,7 @@
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/param.h>
@@ -70,7 +70,6 @@ u_int rcs_cache_nbent;
* Initialize the RCS file data cache.
* Returns 0 on success, -1 on failure.
*/
-
int
rcs_cache_init(u_int maxent)
{
@@ -91,7 +90,6 @@ rcs_cache_init(u_int maxent)
/*
* rcs_cache_destroy()
*/
-
void
rcs_cache_destroy(void)
{
@@ -102,7 +100,6 @@ rcs_cache_destroy(void)
* rcs_cache_fetch()
*
*/
-
RCSFILE*
rcs_cache_fetch(const char *path)
{
@@ -144,7 +141,6 @@ rcs_cache_fetch(const char *path)
* should still rcs_close() the file once they are done with it.
* Returns 0 on success, or -1 on failure.
*/
-
int
rcs_cache_store(RCSFILE *rfp)
{
@@ -191,7 +187,6 @@ rcs_cache_store(RCSFILE *rfp)
*
* Hash the <path> string.
*/
-
static u_int8_t
rcs_cache_hash(const char *path)
{