From owner-freebsd-stable@FreeBSD.ORG Tue Oct 7 08:35:07 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCADB16A4B3 for ; Tue, 7 Oct 2003 08:35:07 -0700 (PDT) Received: from mail.web-1hosting.net (mail.web-1hosting.net [63.123.79.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A7D743F75 for ; Tue, 7 Oct 2003 08:35:07 -0700 (PDT) (envelope-from security@adtu.org) Received: from barney (spencer-117.iowaone.net [12.13.110.117]) by mail.web-1hosting.net (Postfix) with SMTP id CD2B92D802D; Tue, 7 Oct 2003 10:35:05 -0500 (CDT) Message-ID: <014501c38ce8$37fcedd0$d3a8a8c0@barney> From: "Aaron Sloan" To: "David Malone" References: <200310071631.aa97061@salmon.maths.tcd.ie> Date: Tue, 7 Oct 2003 10:32:28 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: freebsd-stable@freebsd.org Subject: Re: good address will not resolve in freebsd X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2003 15:35:08 -0000 > It has to be in the resolver because windows pulls it from the same > NS's. You could edit: /usr/src/lib/libc/net/res_comp.c and look for the line that says: #define hyphenchar(c) ((c) == 0x2d) and replace that with: #define hyphenchar(c) ((c) == 0x2d || (c) == 0x5f) Then recompile and install libc cd /usr/src/lib/libc && make depend && make && make install David. Thanks David, I'll give it a try for fun. Something I haven't done before. take care, Aaron