Subject: Syntax error in ypbind.c
To: None <current-users@sun-lamp.cs.berkeley.edu>
From: Jim Bachesta <bachesta@genesis.Data-IO.COM>
List: current-users
Date: 11/17/1993 10:29:50
Hi Gang,
There is a syntax error in /src/usr.sbin/yp/ypbind/ypbind.c
which causes the following error on a build:
/usr/local/sup/src/usr.sbin/yp/ypbind/ypbind.c:201: parse error before `&'
*** Error code 1
here's the diff:
201c201
< return (void *)&res;
---
> return (void &)&res;
------------------------------------------------------------------------------