Path: utzoo!mnetor!uunet!munnari!otc!metro!basser!elecvax!cad!shand From: shand@cad.jmrc.eecs.unsw.oz (Mark Shand) Newsgroups: comp.sources.bugs Subject: Re: v13i078: Sun RPC, release 3.9, Part01/15 (FIX) Message-ID: <270@whelk.cad.jmrc.eecs.unsw.oz> Date: 11 Mar 88 03:03:26 GMT References: <464@fig.bbn.com> Organization: JMRC, School of Electrical Engineering, UNSW, Australia Lines: 26 Summary: FIX to bug in rpcsvc/mount.x -- declaration of fhandle is WRONG. Declaration of fhandle in rpcsvc/mount.x is WRONG. It conflicts with that in rpcsvc/nfs_prot.x and produces stubs that aren't compatible with SUNOS 3.4 NFS. The problem is that fhandle is declared as a variable length opaque object whereas it should be fixed. Here is the fix *** rpcsvc/mount.x.orig Tue Mar 8 15:28:58 1988 --- rpcsvc/mount.x Thu Mar 10 14:52:08 1988 *************** *** 45,51 **** * or a directory. The file handle can contain whatever information the * server needs to distinguish an individual file. */ ! typedef opaque fhandle; /* * If a status of zero is returned, the call completed successfully, and --- 45,51 ---- * or a directory. The file handle can contain whatever information the * server needs to distinguish an individual file. */ ! typedef opaque fhandle[FHSIZE]; /* * If a status of zero is returned, the call completed successfully, and