From f5594f939f844bbb688313697d6676238da355b3 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 25 Oct 2017 13:13:57 +1100 Subject: [PATCH] rename port-tun.[ch] => port-net.[ch] Ahead of adding rdomain support --- openbsd-compat/Makefile.in | 2 +- openbsd-compat/openbsd-compat.h | 2 +- openbsd-compat/{port-tun.c => port-net.c} | 0 openbsd-compat/{port-tun.h => port-net.h} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename openbsd-compat/{port-tun.c => port-net.c} (100%) rename openbsd-compat/{port-tun.h => port-net.h} (100%) diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in index ac8ae4305..5eef024b5 100644 --- a/openbsd-compat/Makefile.in +++ b/openbsd-compat/Makefile.in @@ -20,7 +20,7 @@ OPENBSD=base64.o basename.o bcrypt_pbkdf.o bindresvport.o blowfish.o daemon.o di COMPAT=arc4random.o bsd-asprintf.o bsd-closefrom.o bsd-cray.o bsd-cygwin_util.o bsd-getpeereid.o getrrsetbyname-ldns.o bsd-err.o bsd-getpagesize.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-malloc.o bsd-setres_id.o bsd-snprintf.o bsd-statvfs.o bsd-waitpid.o fake-rfc2553.o openssl-compat.o xcrypt.o kludge-fd_set.o -PORTS=port-aix.o port-irix.o port-linux.o port-solaris.o port-tun.o port-uw.o +PORTS=port-aix.o port-irix.o port-linux.o port-solaris.o port-net.o port-uw.o .c.o: $(CC) $(CFLAGS) $(CPPFLAGS) -c $< diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index cac799e84..73123bb3f 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h @@ -322,7 +322,7 @@ char *shadow_pw(struct passwd *pw); #include "port-irix.h" #include "port-linux.h" #include "port-solaris.h" -#include "port-tun.h" +#include "port-net.h" #include "port-uw.h" /* _FORTIFY_SOURCE breaks FD_ISSET(n)/FD_SET(n) for n > FD_SETSIZE. Avoid. */ diff --git a/openbsd-compat/port-tun.c b/openbsd-compat/port-net.c similarity index 100% rename from openbsd-compat/port-tun.c rename to openbsd-compat/port-net.c diff --git a/openbsd-compat/port-tun.h b/openbsd-compat/port-net.h similarity index 100% rename from openbsd-compat/port-tun.h rename to openbsd-compat/port-net.h