mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
055569f608
commit
b545252a16
1 changed files with 3 additions and 2 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue