svn commit: r307642 - stable/11/libexec/ypxfr
Mark Johnston
markj at FreeBSD.org
Wed Oct 19 17:18:49 UTC 2016
Author: markj
Date: Wed Oct 19 17:18:48 2016
New Revision: 307642
URL: https://svnweb.freebsd.org/changeset/base/307642
Log:
MFC r307398:
Reference the libc symbols ypresp_{allfn,data} instead of local symbols.
PR: 213506
Modified:
stable/11/libexec/ypxfr/ypxfr_getmap.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/libexec/ypxfr/ypxfr_getmap.c
==============================================================================
--- stable/11/libexec/ypxfr/ypxfr_getmap.c Wed Oct 19 16:40:38 2016 (r307641)
+++ stable/11/libexec/ypxfr/ypxfr_getmap.c Wed Oct 19 17:18:48 2016 (r307642)
@@ -43,8 +43,8 @@ __FBSDID("$FreeBSD$");
extern bool_t xdr_ypresp_all_seq(XDR *, unsigned long *);
-static int (*ypresp_allfn)();
-static void *ypresp_data;
+extern int (*ypresp_allfn)();
+extern void *ypresp_data;
extern DB *specdbp;
extern enum ypstat yp_errno;
More information about the svn-src-all
mailing list