(Message inbox:463)
Received: from CSLI.Stanford.EDU by jessica.Stanford.EDU with TCP; Mon, 12 Dec 88 04:24:43 PST
Received: from po2.andrew.cmu.edu by csli.Stanford.EDU (4.0/4.7); Mon, 12 Dec 88 04:22:12 PST
Received: by po2.andrew.cmu.edu (5.54/3.15) id <AA04049>; Sun, 11 Dec 88 22:35:07 EST
Received: via switchmail for info-appletalk+@andrew.cmu.edu;
 Sun, 11 Dec 88 22:34:55 -0500 (EST)
Received: from po3.andrew.cmu.edu via qmail
          ID </afs/andrew.cmu.edu/service/mailqs/q003/QF.0XcmMQy00UkTQ9sE5c>;
          Sun, 11 Dec 88 20:51:28 -0500 (EST)
Received: from ucbvax.Berkeley.EDU by po3.andrew.cmu.edu (5.54/3.15) id <AA02524> for info-appletalk; Sun, 11 Dec 88 20:50:51 EST
Received: by ucbvax.Berkeley.EDU (5.61/1.33)
	id AA06776; Sun, 11 Dec 88 17:23:33 PST
Received: from USENET by ucbvax.Berkeley.EDU with netnews
	for info-appletalk@andrew.cmu.edu (info-appletalk@andrew.cmu.edu)
	(contact usenet@ucbvax.Berkeley.EDU if you have questions)
Date: 10 Dec 88 18:30:40 GMT
From: wicinski@cmf.nrl.navy.mil  (Tim Wicinski)
Organization: NRL Connection Machine Facility, Washington, DC
Subject: CAP Bug Report and fix
Message-Id: <154@nrl-cmf.UUCP>
Sender: info-appletalk-request@andrew.cmu.edu
To: info-appletalk@andrew.cmu.edu

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)
  };
  
