diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-22 05:14:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-22 05:14:06 +0000 |
commit | 6e6edb70f84fb778d533833a38014456decc6e73 (patch) | |
tree | 42acd959072e91a12bb53d4bbfaffa02a9dce721 /lib | |
parent | 59be703d9b85882d0d7b54471a68d9027051cf57 (diff) |
random function name
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/net/res_init.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/net/res_init.c b/lib/libc/net/res_init.c index 85e0c8211ea..d70b30f2ae0 100644 --- a/lib/libc/net/res_init.c +++ b/lib/libc/net/res_init.c @@ -52,7 +52,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: res_init.c,v 1.8 1996/09/22 02:18:44 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: res_init.c,v 1.9 1996/09/22 05:14:05 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -68,7 +68,6 @@ static char rcsid[] = "$OpenBSD: res_init.c,v 1.8 1996/09/22 02:18:44 deraadt Ex static void res_setoptions __P((char *, char *)); static u_int32_t net_mask __P((struct in_addr)); -static u_int16_t res_randomid __P((void)); /* * Resolver state default settings @@ -408,7 +407,7 @@ net_mask(in) /* XXX - should really use system's version of this */ } static u_int16_t -__res_randomid() +res_randomid() { struct timeval now; |