diff options
author | dd <dd@FreeBSD.org> | 2002-10-02 00:27:14 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2002-10-02 00:27:14 +0000 |
commit | f5801700f44a8478aa0fbddd285bab7ae2385f70 (patch) | |
tree | ff2cf9999680dccb92bd860472c699dcd05f0c0b /contrib/telnet | |
parent | 187a6964e6bfcc01e715a921685983aa58b53108 (diff) | |
download | FreeBSD-src-f5801700f44a8478aa0fbddd285bab7ae2385f70.zip FreeBSD-src-f5801700f44a8478aa0fbddd285bab7ae2385f70.tar.gz |
Permit the argument to the -s option to be a hostname. I see no
reason to restrict this to a numeric address.
PR: 41841
Submitted by: Dmitry Pryanishnikov <dmitry@atlantis.dp.ua>,
Maxim Maximov <mcsi@agava.com>
Diffstat (limited to 'contrib/telnet')
-rw-r--r-- | contrib/telnet/telnet/commands.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/telnet/telnet/commands.c b/contrib/telnet/telnet/commands.c index fa53199..f0372a0 100644 --- a/contrib/telnet/telnet/commands.c +++ b/contrib/telnet/telnet/commands.c @@ -2238,7 +2238,6 @@ tn(int argc, char *argv[]) if (src_addr != NULL) { memset(&hints, 0, sizeof(hints)); - hints.ai_flags = AI_NUMERICHOST; hints.ai_family = family; hints.ai_socktype = SOCK_STREAM; error = getaddrinfo(src_addr, 0, &hints, &src_res); |