Date: Sun, 23 Aug 2015 08:22:01 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r287030 - head/usr.bin/whois Message-ID: <201508230822.t7N8M1rf096669@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: delphij Date: Sun Aug 23 08:22:00 2015 New Revision: 287030 URL: https://svnweb.freebsd.org/changeset/base/287030 Log: Although the website [1] says US-ASCII is accepted, ISO-8859-1 seems to be the only accepted character that is close enough to US-ASCII (and this is also done on OpenBSD; the alternative would be to use UTF-8). [1] http://www.denic.de/en/domains/technik/denic_whois-server/index.html MFC after: 2 weeks Modified: head/usr.bin/whois/whois.c Modified: head/usr.bin/whois/whois.c ============================================================================== --- head/usr.bin/whois/whois.c Sun Aug 23 01:17:52 2015 (r287029) +++ head/usr.bin/whois/whois.c Sun Aug 23 08:22:00 2015 (r287030) @@ -454,7 +454,7 @@ done: if (fp == NULL) err(EX_OSERR, "fdopen()"); if (strcmp(hostname, GERMNICHOST) == 0) { - fprintf(fp, "-T dn,ace -C US-ASCII %s\r\n", query); + fprintf(fp, "-T dn,ace -C ISO-8859-1 %s\r\n", query); } else if (strcmp(hostname, "dk" QNICHOST_TAIL) == 0) { fprintf(fp, "--show-handles %s\r\n", query); } else {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508230822.t7N8M1rf096669>