diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-02-24 08:57:45 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-02-24 08:57:45 +0000 |
| commit | e4f13e774e6863fb2d59ab4bad2318005388bd52 (patch) | |
| tree | 48218593b7c8075580b2d33a5bfa0fb09b9556a6 | |
| parent | 6c20486de431a94a26f018f34e0485b3e0705b10 (diff) | |
Notes
| -rw-r--r-- | include/rpc/rpc.h | 6 | ||||
| -rw-r--r-- | include/rpc/svc.h | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/include/rpc/rpc.h b/include/rpc/rpc.h index 5f8d23ea3d6e..e4de8f486ded 100644 --- a/include/rpc/rpc.h +++ b/include/rpc/rpc.h @@ -28,7 +28,7 @@ * * from: @(#)rpc.h 1.9 88/02/08 SMI * from: @(#)rpc.h 2.4 89/07/11 4.0 RPCSRC - * $Id: rpc.h,v 1.1 1993/10/27 05:40:45 paul Exp $ + * $Id: rpc.h,v 1.2 1994/08/07 18:40:58 wollman Exp $ */ /* @@ -59,7 +59,9 @@ * Uncomment-out the next line if you are building the rpc library with * DES Authentication (see the README file in the secure_rpc/ directory). */ -/*#include <rpc/auth_des.h> /* protocol for des style cred */ +#if 0 +#include <rpc/auth_des.h> /* protocol for des style cred */ +#endif /* Server side only remote procedure callee */ #include <rpc/svc.h> /* service manager and multiplexer */ diff --git a/include/rpc/svc.h b/include/rpc/svc.h index b525d8232dea..11b0afe1a3c5 100644 --- a/include/rpc/svc.h +++ b/include/rpc/svc.h @@ -28,7 +28,7 @@ * * from: @(#)svc.h 1.20 88/02/08 SMI * from: @(#)svc.h 2.2 88/07/29 4.0 RPCSRC - * $Id: svc.h,v 1.1 1993/10/27 05:40:55 paul Exp $ + * $Id: svc.h,v 1.2 1994/08/07 18:41:00 wollman Exp $ */ /* @@ -155,7 +155,7 @@ struct svc_req { * u_long prog; * u_long vers; * void (*dispatch)(); - * int protocol; /* like TCP or UDP, zero means do not register + * int protocol; // like TCP or UDP, zero means do not register */ __BEGIN_DECLS extern bool_t svc_register __P((SVCXPRT *, u_long, u_long, void (*)(), int)); |
