diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-03-13 02:18:37 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-03-13 02:18:37 +0000 |
commit | 85da8aed64c714f0c99a84d0ab722da7a6fd2114 (patch) | |
tree | 389ba97d0bcb2e4cd7d1c58ee0a8148b4fe7fbe8 /lib | |
parent | de6a748b67d14e38e9f6d174048f55090652cb0e (diff) |
don't process NI_NOFQDN, since the currently coded behavior is not specwise
correct.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/net/getnameinfo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/net/getnameinfo.c b/lib/libc/net/getnameinfo.c index 3769e0fa3c8..1eddbb0bf06 100644 --- a/lib/libc/net/getnameinfo.c +++ b/lib/libc/net/getnameinfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getnameinfo.c,v 1.10 2000/02/17 17:09:41 itojun Exp $ */ +/* $OpenBSD: getnameinfo.c,v 1.11 2000/03/13 02:18:36 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -266,10 +266,12 @@ getnameinfo(sa, salen, host, hostlen, serv, servlen, flags) h_error = h_errno; if (hp) { +#if 0 if (flags & NI_NOFQDN) { p = strchr(hp->h_name, '.'); if (p) *p = '\0'; } +#endif if (strlen(hp->h_name) > hostlen) { return ENI_MEMORY; } |