Path: utzoo!attcan!uunet!yale!cmcl2!nrl-cmf!wicinski From: wicinski@nrl-cmf.UUCP (Tim Wicinski) Newsgroups: comp.protocols.appletalk Subject: CAP Bug Report and fix Message-ID: <154@nrl-cmf.UUCP> Date: 10 Dec 88 18:30:40 GMT Organization: NRL Connection Machine Facility, Washington, DC Lines: 30 Dave Platt asked awhile ago why getzones failed with an error of -1096, and all i told him was 'yea, it did the same for me."this only happens when you use the new port assignments (200 and up) Bug: getzones failed when using the new NIC port assignments (200 and up), but would work fine otherwise. Fix: lib/kip/abkip.c incorrectly defined the service "at-kip" and "at-kis". the simple fix is below: *** lib/cap/abkip.c.old Sat Dec 10 03:00:37 1988 --- lib/cap/abkip.c Sat Dec 10 03:01:04 1988 *************** *** 161,167 WKS_entry("at-rtmp",rtmpSkt), WKS_entry("at-nbp",nbpNIS), WKS_entry("at-echo",echoSkt), ! WKS_entry("at-zis",zipZIS), WKS_entry(NULL, 0) }; --- 161,167 ----- WKS_entry("at-rtmp",rtmpSkt), WKS_entry("at-nbp",nbpNIS), WKS_entry("at-echo",echoSkt), ! WKS_entry("at-zip",zipZIS), WKS_entry(NULL, 0) };