Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Oct 2016 17:18:48 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r307642 - stable/11/libexec/ypxfr
Message-ID:  <201610191718.u9JHIm6t053789@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610191718.u9JHIm6t053789>