summaryrefslogtreecommitdiffstats
path: root/include/rpcsvc
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1998-01-19 17:19:09 +0000
committerwpaul <wpaul@FreeBSD.org>1998-01-19 17:19:09 +0000
commit1f7cb8a6c2660fa79ddabf0eabc1de17a985c316 (patch)
tree9821da9c6886540bd57416b87f7d26460cf2ba3d /include/rpcsvc
parentf587b268a1db2884ac02d1111626b1def62f83a8 (diff)
downloadFreeBSD-src-1f7cb8a6c2660fa79ddabf0eabc1de17a985c316.zip
FreeBSD-src-1f7cb8a6c2660fa79ddabf0eabc1de17a985c316.tar.gz
Invoke rpcgen with -C so that headers are created with ANSI prototypes.
Note: this may cause some problems in a few cases. With very old versions of rpcgen, if you defined a procedure called foo, then rpcen would create client stubs for function foo_1() and server stubs _also_ with function foo_1(). This only worked because of the lack of ANSI prototypes: the client side stub takes different arguments than the server side stub. (The client side takes a CLIENT * handle, while the server side wants an svc_req *.) To fix this conflict, rpcgen in ANSI mode generates foo_1() for the client and foo_1_svc() for the server. RPC server code that depends on the old behavior might break because of this. (Fixing it is just a matter of adding the _svc suffix onto the server procedure names.)
Diffstat (limited to 'include/rpcsvc')
-rw-r--r--include/rpcsvc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rpcsvc/Makefile b/include/rpcsvc/Makefile
index ddf4c39..71cd966 100644
--- a/include/rpcsvc/Makefile
+++ b/include/rpcsvc/Makefile
@@ -1,9 +1,9 @@
# from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC
-# $Id: Makefile,v 1.19 1997/09/16 10:52:59 bde Exp $
+# $Id: Makefile,v 1.20 1998/01/16 11:51:19 bde Exp $
.SUFFIXES: .x
-RPCCOM = rpcgen
+RPCCOM = rpcgen -C
HDRS= key_prot.h klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rnusers.h \
rquota.h rstat.h rwall.h sm_inter.h spray.h yppasswd.h yp.h \
OpenPOWER on IntegriCloud