summaryrefslogtreecommitdiff
path: root/usr.bin/rpcgen/rpc_main.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-11 21:10:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-11 21:10:43 +0000
commit3bdd691d7c9dbb77eac7c6ddf0d7027b02f405e0 (patch)
treed20d34ee7b890ca306e69390a70e250922b65777 /usr.bin/rpcgen/rpc_main.c
parent3cb264a844ab837e956062cf75bdc9ae06cc4265 (diff)
s/inline/doinline/; christos
Diffstat (limited to 'usr.bin/rpcgen/rpc_main.c')
-rw-r--r--usr.bin/rpcgen/rpc_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/rpcgen/rpc_main.c b/usr.bin/rpcgen/rpc_main.c
index b458729f00c..b4faa61af64 100644
--- a/usr.bin/rpcgen/rpc_main.c
+++ b/usr.bin/rpcgen/rpc_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rpc_main.c,v 1.2 1996/03/27 19:32:51 niklas Exp $ */
+/* $OpenBSD: rpc_main.c,v 1.3 1997/10/11 21:10:41 deraadt Exp $ */
/* $NetBSD: rpc_main.c,v 1.9 1996/02/19 11:12:43 pk Exp $ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -32,7 +32,7 @@
#ifndef lint
static char sccsid[] = "@(#)rpc_main.c 1.30 89/03/30 (C) 1987 SMI";
-static char cvsid[] = "$OpenBSD: rpc_main.c,v 1.2 1996/03/27 19:32:51 niklas Exp $";
+static char cvsid[] = "$OpenBSD: rpc_main.c,v 1.3 1997/10/11 21:10:41 deraadt Exp $";
#endif
/*
@@ -112,7 +112,7 @@ int callerflag; /* Generate svc_caller() function */
#define INLINE 3
/*length at which to start doing an inline */
-int inline=INLINE; /* length at which to start doing an inline. 3 = default
+int doinline=INLINE; /* length at which to start doing an inline. 3 = default
if 0, no xdr_inline code */
int indefinitewait; /* If started by port monitors, hang till it wants */
@@ -1012,7 +1012,7 @@ parseargs(argc, argv, cmd)
if (++i == argc) {
return (0);
}
- inline = atoi(argv[i]);
+ doinline = atoi(argv[i]);
goto nextarg;
case 'n':
case 'o':