Remove a couple of nested comments.

This commit is contained in:
Poul-Henning Kamp 1995-02-24 08:57:45 +00:00
parent 6c20486de4
commit e4f13e774e
2 changed files with 6 additions and 4 deletions

View File

@ -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 */

View File

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