rpcbind: Fix build

Add missed unistd.h include.  Not sure where it was lost; I believe it
compiled before I submitted the change.

PR:		224503
Reported by:	Cy Schubert <Cy.Schubert AT komquats.com>
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Conrad Meyer 2018-01-02 01:48:11 +00:00
parent 055569f608
commit b545252a16
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327483

View File

@ -54,13 +54,14 @@
#include <errno.h>
#include <syslog.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef PORTMAP
#include <netinet/in.h>
#include <rpc/rpc_com.h>
#include <rpc/pmap_prot.h>
#endif /* PORTMAP */
#include <string.h>
#include <stdlib.h>
#include "rpcbind.h"