diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-06-26 21:21:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-06-26 21:21:25 +0000 |
commit | e02f77d2a6a52f96b8f35599d9c13a1e62817b9b (patch) | |
tree | cdffbc6d417f3f0b0f89db1bc35dd35d4d63b96c /usr.bin/rdist/lookup.c | |
parent | f82caec240a71362a5d0f2305c7f074be119948b (diff) |
rdist 6.1.4 + OpenBSD patches + some -Wall
Diffstat (limited to 'usr.bin/rdist/lookup.c')
-rw-r--r-- | usr.bin/rdist/lookup.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/rdist/lookup.c b/usr.bin/rdist/lookup.c index 10b69524c2a..2ed5d7663b5 100644 --- a/usr.bin/rdist/lookup.c +++ b/usr.bin/rdist/lookup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lookup.c,v 1.7 1996/07/25 05:31:01 millert Exp $ */ +/* $OpenBSD: lookup.c,v 1.8 1998/06/26 21:21:14 millert Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -34,8 +34,13 @@ */ #ifndef lint +#if 0 static char RCSid[] = -"$OpenBSD: lookup.c,v 1.7 1996/07/25 05:31:01 millert Exp $"; +"$From: lookup.c,v 6.8 1996/07/19 16:49:55 michaelc Exp $"; +#else +static char RCSid[] = +"$OpenBSD: lookup.c,v 1.8 1998/06/26 21:21:14 millert Exp $"; +#endif static char sccsid[] = "@(#)lookup.c 5.1 (Berkeley) 6/6/85"; @@ -62,6 +67,7 @@ static struct syment *hashtab[HASHSIZE]; /* * Define a variable from a command line argument. */ +void define(name) char *name; { |