diff options
author | 2003-05-01 20:23:40 +0000 | |
---|---|---|
committer | 2003-05-01 20:23:40 +0000 | |
commit | 7ae68d51a02c87d3c56b7f5939be167a4c2c928c (patch) | |
tree | 5de37fc9f1957de060f0aaeb0364ef1db81b9bbc /lib/libc/db/hash | |
parent | add missing enumeration case to select to kill gcc warning (diff) | |
download | wireguard-openbsd-7ae68d51a02c87d3c56b7f5939be167a4c2c928c.tar.xz wireguard-openbsd-7ae68d51a02c87d3c56b7f5939be167a4c2c928c.zip |
-Wall cleanup, make rcsid variables const
millert@ ok
Diffstat (limited to 'lib/libc/db/hash')
-rw-r--r-- | lib/libc/db/hash/hash.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_bigkey.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_buf.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_func.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_log2.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hash_page.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/hsearch.c | 4 | ||||
-rw-r--r-- | lib/libc/db/hash/ndbm.c | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/lib/libc/db/hash/hash.c b/lib/libc/db/hash/hash.c index 9889d4d33ff..10e8f649cfe 100644 --- a/lib/libc/db/hash/hash.c +++ b/lib/libc/db/hash/hash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash.c,v 1.14 2002/03/25 19:08:48 millert Exp $ */ +/* $OpenBSD: hash.c,v 1.15 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94"; #else -static char rcsid[] = "$OpenBSD: hash.c,v 1.14 2002/03/25 19:08:48 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash.c,v 1.15 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/hash_bigkey.c b/lib/libc/db/hash/hash_bigkey.c index f5e953f2726..291d503fcf0 100644 --- a/lib/libc/db/hash/hash_bigkey.c +++ b/lib/libc/db/hash/hash_bigkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_bigkey.c,v 1.10 2002/02/25 23:45:15 millert Exp $ */ +/* $OpenBSD: hash_bigkey.c,v 1.11 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; #else -static char rcsid[] = "$OpenBSD: hash_bigkey.c,v 1.10 2002/02/25 23:45:15 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash_bigkey.c,v 1.11 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/hash_buf.c b/lib/libc/db/hash/hash_buf.c index f8e5089edac..40f65d8e64c 100644 --- a/lib/libc/db/hash/hash_buf.c +++ b/lib/libc/db/hash/hash_buf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_buf.c,v 1.10 2002/02/25 23:45:15 millert Exp $ */ +/* $OpenBSD: hash_buf.c,v 1.11 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hash_buf.c 8.5 (Berkeley) 7/15/94"; #else -static char rcsid[] = "$OpenBSD: hash_buf.c,v 1.10 2002/02/25 23:45:15 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash_buf.c,v 1.11 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/hash_func.c b/lib/libc/db/hash/hash_func.c index 2b054569e86..d1b705b29dd 100644 --- a/lib/libc/db/hash/hash_func.c +++ b/lib/libc/db/hash/hash_func.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_func.c,v 1.6 2002/02/16 21:27:22 millert Exp $ */ +/* $OpenBSD: hash_func.c,v 1.7 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hash_func.c 8.4 (Berkeley) 11/7/95"; #else -static char rcsid[] = "$OpenBSD: hash_func.c,v 1.6 2002/02/16 21:27:22 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash_func.c,v 1.7 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/hash_log2.c b/lib/libc/db/hash/hash_log2.c index 244560c0870..d2e3c9df959 100644 --- a/lib/libc/db/hash/hash_log2.c +++ b/lib/libc/db/hash/hash_log2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_log2.c,v 1.4 1999/02/15 05:11:24 millert Exp $ */ +/* $OpenBSD: hash_log2.c,v 1.5 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hash_log2.c 8.4 (Berkeley) 11/7/95"; #else -static char rcsid[] = "$OpenBSD: hash_log2.c,v 1.4 1999/02/15 05:11:24 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash_log2.c,v 1.5 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/hash_page.c b/lib/libc/db/hash/hash_page.c index 09a58746c9f..2841eeaf05a 100644 --- a/lib/libc/db/hash/hash_page.c +++ b/lib/libc/db/hash/hash_page.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_page.c,v 1.12 2002/02/25 23:45:15 millert Exp $ */ +/* $OpenBSD: hash_page.c,v 1.13 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hash_page.c 8.7 (Berkeley) 8/16/94"; #else -static char rcsid[] = "$OpenBSD: hash_page.c,v 1.12 2002/02/25 23:45:15 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash_page.c,v 1.13 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/hsearch.c b/lib/libc/db/hash/hsearch.c index 9a75a7411c5..ddc0ff1df73 100644 --- a/lib/libc/db/hash/hsearch.c +++ b/lib/libc/db/hash/hsearch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hsearch.c,v 1.4 1999/02/15 05:11:24 millert Exp $ */ +/* $OpenBSD: hsearch.c,v 1.5 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)hsearch.c 8.5 (Berkeley) 9/21/94"; #else -static char rcsid[] = "$OpenBSD: hsearch.c,v 1.4 1999/02/15 05:11:24 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hsearch.c,v 1.5 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ diff --git a/lib/libc/db/hash/ndbm.c b/lib/libc/db/hash/ndbm.c index c0db9cd225f..88cb751cff1 100644 --- a/lib/libc/db/hash/ndbm.c +++ b/lib/libc/db/hash/ndbm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ndbm.c,v 1.14 2002/06/05 17:21:36 deraadt Exp $ */ +/* $OpenBSD: ndbm.c,v 1.15 2003/05/01 20:23:40 avsm Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)dbm.c 8.6 (Berkeley) 11/7/95"; #else -static char rcsid[] = "$OpenBSD: ndbm.c,v 1.14 2002/06/05 17:21:36 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: ndbm.c,v 1.15 2003/05/01 20:23:40 avsm Exp $"; #endif #endif /* LIBC_SCCS and not lint */ |