summaryrefslogtreecommitdiffstats
path: root/libexec/ypxfr
diff options
context:
space:
mode:
authoraraujo <araujo@FreeBSD.org>2015-07-28 02:32:40 +0000
committeraraujo <araujo@FreeBSD.org>2015-07-28 02:32:40 +0000
commitfafebceb9b4261b02d6bdbab4301b2c00ae3ddf7 (patch)
tree474a3116b16d6874dad78ef520947dc99f16dd88 /libexec/ypxfr
parent63528763eb4bf746eee1fefdf2e6dbf302f7adea (diff)
downloadFreeBSD-src-fafebceb9b4261b02d6bdbab4301b2c00ae3ddf7.zip
FreeBSD-src-fafebceb9b4261b02d6bdbab4301b2c00ae3ddf7.tar.gz
Staticfy and constify some variables and clean up the code a bit to make it
more readable. No functional change. Differential Revision: D3166 Reviewed by: kib Sponsored by: gandi.net
Diffstat (limited to 'libexec/ypxfr')
-rw-r--r--libexec/ypxfr/ypxfr_getmap.c4
-rw-r--r--libexec/ypxfr/ypxfr_main.c12
-rw-r--r--libexec/ypxfr/ypxfrd_getmap.c2
3 files changed, 9 insertions, 9 deletions
diff --git a/libexec/ypxfr/ypxfr_getmap.c b/libexec/ypxfr/ypxfr_getmap.c
index 4b8794f..458971f 100644
--- a/libexec/ypxfr/ypxfr_getmap.c
+++ b/libexec/ypxfr/ypxfr_getmap.c
@@ -43,8 +43,8 @@ __FBSDID("$FreeBSD$");
extern bool_t xdr_ypresp_all_seq(XDR *, unsigned long *);
-int (*ypresp_allfn)();
-void *ypresp_data;
+static int (*ypresp_allfn)();
+static void *ypresp_data;
extern DB *specdbp;
extern enum ypstat yp_errno;
diff --git a/libexec/ypxfr/ypxfr_main.c b/libexec/ypxfr/ypxfr_main.c
index 03a30f6..03ebbe1 100644
--- a/libexec/ypxfr/ypxfr_main.c
+++ b/libexec/ypxfr/ypxfr_main.c
@@ -54,12 +54,12 @@ __FBSDID("$FreeBSD$");
char *progname = "ypxfr";
char *yp_dir = _PATH_YP;
int _rpcpmstart = 0;
-int ypxfr_use_yplib = 0; /* Assume the worst. */
-int ypxfr_clear = 1;
-int ypxfr_prognum = 0;
-struct sockaddr_in ypxfr_callback_addr;
-struct yppushresp_xfr ypxfr_resp;
-DB *dbp;
+static int ypxfr_use_yplib = 0; /* Assume the worst. */
+static int ypxfr_clear = 1;
+static int ypxfr_prognum = 0;
+static struct sockaddr_in ypxfr_callback_addr;
+static struct yppushresp_xfr ypxfr_resp;
+static DB *dbp;
static void
ypxfr_exit(ypxfrstat retval, char *temp)
diff --git a/libexec/ypxfr/ypxfrd_getmap.c b/libexec/ypxfr/ypxfrd_getmap.c
index b1424ac..a5ac92d 100644
--- a/libexec/ypxfr/ypxfrd_getmap.c
+++ b/libexec/ypxfr/ypxfrd_getmap.c
@@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$");
#include <sys/types.h>
#include "ypxfr_extern.h"
-int fp = 0;
+static int fp = 0;
static bool_t
xdr_my_xfr(register XDR *xdrs, xfr *objp)
OpenPOWER on IntegriCloud