From 28af8b8ef8fc5d8597d5b3c669143fec15d4e349 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 13 Jul 1997 19:17:13 +0000 Subject: [PATCH] Fix RCSID's Parenthesize --- lib/libc/gen/pwcache.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/libc/gen/pwcache.c b/lib/libc/gen/pwcache.c index c22e82460bbf..48b913841620 100644 --- a/lib/libc/gen/pwcache.c +++ b/lib/libc/gen/pwcache.c @@ -1,4 +1,4 @@ -/* $NetBSD: pwcache.c,v 1.6 1996/12/20 20:16:07 sommerfe Exp $ */ +/* $NetBSD: pwcache.c,v 1.7 1997/07/13 19:17:13 christos Exp $ */ /* * Copyright (c) 1989, 1993 @@ -33,11 +33,12 @@ * SUCH DAMAGE. */ +#include #if defined(LIBC_SCCS) && !defined(lint) #if 0 static char sccsid[] = "@(#)pwcache.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$NetBSD: pwcache.c,v 1.6 1996/12/20 20:16:07 sommerfe Exp $"; +__RCSID("$NetBSD: pwcache.c,v 1.7 1997/07/13 19:17:13 christos Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -51,7 +52,7 @@ static char rcsid[] = "$NetBSD: pwcache.c,v 1.6 1996/12/20 20:16:07 sommerfe Exp #include #define NCACHE 64 /* power of 2 */ -#define MASK NCACHE - 1 /* bits to store with */ +#define MASK (NCACHE - 1) /* bits to store with */ char * user_from_uid(uid, nouser)