diff options
author | 1999-06-06 18:58:54 +0000 | |
---|---|---|
committer | 1999-06-06 18:58:54 +0000 | |
commit | 5725129892d8434305fb2370113b4e4cb7ad87f5 (patch) | |
tree | 785637f924c2eee60638e5b4d0f2cad93b5cd5a6 | |
parent | mention the `manual' command; mcsmart@engin.umich.edu (diff) | |
download | wireguard-openbsd-5725129892d8434305fb2370113b4e4cb7ad87f5.tar.xz wireguard-openbsd-5725129892d8434305fb2370113b4e4cb7ad87f5.zip |
oops
-rw-r--r-- | libexec/tcpd/tcpdchk/scaffold.c | 6 | ||||
-rw-r--r-- | libexec/tcpd/tcpdmatch/tcpdmatch.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libexec/tcpd/tcpdchk/scaffold.c b/libexec/tcpd/tcpdchk/scaffold.c index 14bf223b526..1d51f3eb6df 100644 --- a/libexec/tcpd/tcpdchk/scaffold.c +++ b/libexec/tcpd/tcpdchk/scaffold.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scaffold.c,v 1.2 1999/06/06 15:34:57 deraadt Exp $ */ +/* $OpenBSD: scaffold.c,v 1.3 1999/06/06 18:58:54 deraadt Exp $ */ /* * Routines for testing only. Not really industrial strength. @@ -10,7 +10,7 @@ #if 0 static char sccs_id[] = "@(#) scaffold.c 1.5 95/01/03 09:13:48"; #else -static char rcsid[] = "$OpenBSD: scaffold.c,v 1.2 1999/06/06 15:34:57 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: scaffold.c,v 1.3 1999/06/06 18:58:54 deraadt Exp $"; #endif #endif @@ -93,7 +93,7 @@ char *host; /* * Host address: translate it to internal form. */ - if (dot_quad_addr(host, &addr.s_addr)) { + if (dot_quad_addr_new(host, &addr.s_addr)) { h.h_addr_list = addr_list; h.h_addr_list[0] = (char *) &addr; h.h_length = sizeof(addr); diff --git a/libexec/tcpd/tcpdmatch/tcpdmatch.c b/libexec/tcpd/tcpdmatch/tcpdmatch.c index 12c266983b6..2225e548546 100644 --- a/libexec/tcpd/tcpdmatch/tcpdmatch.c +++ b/libexec/tcpd/tcpdmatch/tcpdmatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcpdmatch.c,v 1.3 1999/06/06 15:34:57 deraadt Exp $ */ +/* $OpenBSD: tcpdmatch.c,v 1.4 1999/06/06 18:58:54 deraadt Exp $ */ /* * tcpdmatch - explain what tcpd would do in a specific case @@ -19,7 +19,7 @@ #if 0 static char sccsid[] = "@(#) tcpdmatch.c 1.5 96/02/11 17:01:36"; #else -static char rcsid[] = "$OpenBSD: tcpdmatch.c,v 1.3 1999/06/06 15:34:57 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: tcpdmatch.c,v 1.4 1999/06/06 18:58:54 deraadt Exp $"; #endif #endif @@ -208,7 +208,7 @@ char **argv; * If a client address is specified, we simulate the effect of client * hostname lookup failure. */ - if (dot_quad_addr(client, NULL)) { + if (dot_quad_addr_new(client, NULL)) { request_set(&request, RQ_CLIENT_ADDR, client, 0); tcpdmatch(&request); exit(0); |