summaryrefslogtreecommitdiffstats
path: root/usr.sbin/route6d
diff options
context:
space:
mode:
authorjca <jca@openbsd.org>2015-10-26 00:25:45 +0000
committerjca <jca@openbsd.org>2015-10-26 00:25:45 +0000
commita12abc5a0532b058d7fd324a32ab28f217e0fc85 (patch)
tree4119aade931cb53b4dc8989e6b9717b28f969164 /usr.sbin/route6d
parentThose variables should be local to the functions where they are used. (diff)
downloadwireguard-openbsd-a12abc5a0532b058d7fd324a32ab28f217e0fc85.tar.xz
wireguard-openbsd-a12abc5a0532b058d7fd324a32ab28f217e0fc85.zip
Rename the struct pollfd array, "set" -> "pfd"
"set" reminds of select(2) fd_set, and is never used elsewhere in the tree as a name for a pollfd array. No functional change.
Diffstat (limited to 'usr.sbin/route6d')
-rw-r--r--usr.sbin/route6d/route6d.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c
index bf2c82434e9..8b3686b17ee 100644
--- a/usr.sbin/route6d/route6d.c
+++ b/usr.sbin/route6d/route6d.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: route6d.c,v 1.79 2015/10/26 00:20:44 jca Exp $ */
+/* $OpenBSD: route6d.c,v 1.80 2015/10/26 00:25:45 jca Exp $ */
/* $KAME: route6d.c,v 1.111 2006/10/25 06:38:13 jinmei Exp $ */
/*
@@ -124,7 +124,7 @@ int nifc; /* number of valid ifc's */
struct ifc **index2ifc;
int nindex2ifc;
struct ifc *loopifcp = NULL; /* pointing to loopback */
-struct pollfd set[2];
+struct pollfd pfd[2];
int rtsock; /* the routing socket */
int ripsock; /* socket to send/receive RIP datagram */
@@ -410,7 +410,7 @@ main(int argc, char *argv[])
continue;
}
- switch (poll(set, 2, INFTIM))
+ switch (poll(pfd, 2, INFTIM))
{
case -1:
if (errno != EINTR) {
@@ -421,12 +421,12 @@ main(int argc, char *argv[])
case 0:
continue;
default:
- if (set[0].revents & POLLIN) {
+ if (pfd[0].revents & POLLIN) {
sigprocmask(SIG_BLOCK, &mask, &omask);
riprecv();
sigprocmask(SIG_SETMASK, &omask, NULL);
}
- if (set[1].revents & POLLIN) {
+ if (pfd[1].revents & POLLIN) {
sigprocmask(SIG_BLOCK, &mask, &omask);
rtrecv();
sigprocmask(SIG_SETMASK, &omask, NULL);
@@ -604,18 +604,18 @@ init(void)
}
memcpy(&ripsin, res->ai_addr, res->ai_addrlen);
- set[0].fd = ripsock;
- set[0].events = POLLIN;
+ pfd[0].fd = ripsock;
+ pfd[0].events = POLLIN;
if (nflag == 0) {
if ((rtsock = socket(PF_ROUTE, SOCK_RAW, 0)) < 0) {
fatal("route socket");
/*NOTREACHED*/
}
- set[1].fd = rtsock;
- set[1].events = POLLIN;
+ pfd[1].fd = rtsock;
+ pfd[1].events = POLLIN;
} else
- set[1].fd = -1;
+ pfd[1].fd = -1;
}