diff options
author | Eric Jackson <ericj@cvs.openbsd.org> | 2002-02-19 22:42:05 +0000 |
---|---|---|
committer | Eric Jackson <ericj@cvs.openbsd.org> | 2002-02-19 22:42:05 +0000 |
commit | 598ba4f11965b32247fa0028d027012079a2abab (patch) | |
tree | 7e8909b3cdb2cf0bd61b56b5db23c2003076003c /usr.bin/nc/socks.c | |
parent | 52cf798b76fb5449aa9fe7efaa46107daec5a0d2 (diff) |
-Wall cleanup.
from Kevin Steves <stevesk@pobox.com>
Diffstat (limited to 'usr.bin/nc/socks.c')
-rw-r--r-- | usr.bin/nc/socks.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/nc/socks.c b/usr.bin/nc/socks.c index 826a316e555..a68e36af067 100644 --- a/usr.bin/nc/socks.c +++ b/usr.bin/nc/socks.c @@ -1,4 +1,4 @@ -/* $OpenBSD: socks.c,v 1.3 2001/10/28 19:46:12 jakob Exp $ */ +/* $OpenBSD: socks.c,v 1.4 2002/02/19 22:42:04 ericj Exp $ */ /* * Copyright (c) 1999 Niklas Hallqvist. All rights reserved. @@ -49,6 +49,8 @@ #define SOCKS_IPV4 1 #define SOCKS_MAXCMDSZ 10 +int remote_connect(char *, char *, struct addrinfo); + static in_addr_t decode_addr (const char *s) { |