Received: from pch.mit.edu (PCH.MIT.EDU [18.7.21.90]) by krbdev.mit.edu (8.9.3p2) with ESMTP id SAA00140; Mon, 27 Feb 2006 18:30:44 -0500 (EST) Received: from pch.mit.edu (pch.mit.edu [127.0.0.1]) by pch.mit.edu (8.12.8p2/8.12.8) with ESMTP id k1RNUDgQ011198 for ; Mon, 27 Feb 2006 18:30:13 -0500 Received: from fort-point-station.mit.edu (FORT-POINT-STATION.MIT.EDU [18.7.7.76]) by pch.mit.edu (8.12.8p2/8.12.8) with ESMTP id k1RMJKgQ025948 for ; Mon, 27 Feb 2006 17:19:20 -0500 Received: from cybersnyder.com (s53.n41.vds2000.com [66.84.41.53]) by fort-point-station.mit.edu (8.12.4/8.9.2) with ESMTP id k1RMJKiM029367 for ; Mon, 27 Feb 2006 17:19:20 -0500 (EST) Received: (from root@localhost) by cybersnyder.com (8.11.6/8.11.6) id k1RMJJZ30527; Mon, 27 Feb 2006 17:19:19 -0500 Date: Mon, 27 Feb 2006 17:19:19 -0500 Message-Id: <200602272219.k1RMJJZ30527@cybersnyder.com> X-Orig: root@localhost From: "Rich Snyder" To: krb5-bugs@mit.edu Subject: AIX core dumps X-Mailer: NeoMail 1.25 X-Ipaddress: 66.84.4.129 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Spam-Score: -2.464 X-Spam-Flag: NO X-Scanned-BY: MIMEDefang 2.42 X-Mailman-Approved-At: Mon, 27 Feb 2006 18:30:11 -0500 X-Beenthere: krb5-bugs-incoming@mailman.mit.edu X-Mailman-Version: 2.1.6 Precedence: list Sender: krb5-bugs-incoming-bounces@PCH.mit.edu Errors-To: krb5-bugs-incoming-bounces@PCH.mit.edu X-RT-Original-Encoding: iso-8859-1 Content-Length: 1859 Looks like this problem goes back a few versions and I found a patch on the web the fixed the problem and just wanted to make sure that it got into the next release: The symptoms in AIX v5.3 were that when doing an initial kinit on the server, I get the following message: kinit(v5): Cannot resolve network address for KDC in requested realm while getting initial credentials ...and a core dump. The following patch fixed the problem. Many thanks to Donn Cave. I searched the bug list, but couldn't find this mentioned in results of the searches and wanted to make sure this was included. Thanks! Fix by Donn Cave: Donn Cave, donn u.washington.edu ----------------------------------- *** include/fake-addrinfo.h.dist Wed Jun 1 12:24:32 2005 --- include/fake-addrinfo.h Fri Aug 12 09:10:48 2005 *************** *** 1193,1199 **** a known service name for tcp or udp (as appropriate), an error code (for "host not found") is returned. If the port maps to a known service for both udp and tcp, all is well. */ ! if (serv && serv[0] && isdigit(serv[0])) { unsigned long lport; char *end; lport = strtoul(serv, &end, 10); --- 1193,1208 ---- a known service name for tcp or udp (as appropriate), an error code (for "host not found") is returned. If the port maps to a known service for both udp and tcp, all is well. */ ! /* ! ** ! ** However, where AI_NUNERICSERV is defined (AIX 5) and was specified, ! ** this is unneeded and and broken - "discard" is not numeric. ! */ ! if (serv && serv[0] ! #ifdef AI_NUMERICSERV ! && !(hint->ai_flags & AI_NUMERICSERV) ! #endif ! && isdigit(serv[0])) { unsigned long lport; char *end; lport = strtoul(serv, &end, 10);