Module Name: src Committed By: joerg Date: Wed Apr 22 23:47:02 UTC 2020
Modified Files: src/usr.sbin/rpc.bootparamd: bootparamd.c Log Message: _rpcpmstart is defined by rpcgen, so externalize it here To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/usr.sbin/rpc.bootparamd/bootparamd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/rpc.bootparamd/bootparamd.c diff -u src/usr.sbin/rpc.bootparamd/bootparamd.c:1.47 src/usr.sbin/rpc.bootparamd/bootparamd.c:1.48 --- src/usr.sbin/rpc.bootparamd/bootparamd.c:1.47 Thu Aug 15 08:34:19 2019 +++ src/usr.sbin/rpc.bootparamd/bootparamd.c Wed Apr 22 23:47:02 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: bootparamd.c,v 1.47 2019/08/15 08:34:19 kamil Exp $ */ +/* $NetBSD: bootparamd.c,v 1.48 2020/04/22 23:47:02 joerg Exp $ */ /* * This code is not copyright, and is placed in the public domain. @@ -11,7 +11,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: bootparamd.c,v 1.47 2019/08/15 08:34:19 kamil Exp $"); +__RCSID("$NetBSD: bootparamd.c,v 1.48 2020/04/22 23:47:02 joerg Exp $"); #endif #include <sys/types.h> @@ -56,7 +56,7 @@ static char domain_name[MAX_MACHINE_NAME extern void bootparamprog_1(struct svc_req *, SVCXPRT *); extern int _rpcsvcdirty; -int _rpcpmstart = 0; +extern int _rpcpmstart; int debug = 0; int dolog = 0; struct in_addr route_addr;