Date: Fri, 2 Jan 2015 16:55:27 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376054 - in head/dns/noip: . files Message-ID: <201501021655.t02GtRXw009589@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adamw Date: Fri Jan 2 16:55:26 2015 New Revision: 376054 URL: https://svnweb.freebsd.org/changeset/ports/376054 QAT: https://qat.redports.org/buildarchive/r376054/ Log: Remove portions of patch relying upon faith(4) that are no longer necessary. PR: 195002 Submitted by: Stanislaw Halik (maintainer) Patch by: Ben Woods Approved by: maintainer Modified: head/dns/noip/Makefile head/dns/noip/files/patch-noip2.c Modified: head/dns/noip/Makefile ============================================================================== --- head/dns/noip/Makefile Fri Jan 2 15:45:02 2015 (r376053) +++ head/dns/noip/Makefile Fri Jan 2 16:55:26 2015 (r376054) @@ -3,7 +3,7 @@ PORTNAME= noip PORTVERSION= 2.1.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns MASTER_SITES= http://www.no-ip.com/client/linux/ \ CRITICAL Modified: head/dns/noip/files/patch-noip2.c ============================================================================== --- head/dns/noip/files/patch-noip2.c Fri Jan 2 15:45:02 2015 (r376053) +++ head/dns/noip/files/patch-noip2.c Fri Jan 2 16:55:26 2015 (r376054) @@ -27,28 +27,3 @@ fprintf(stderr, "Options: -C create configuration data\n"); fprintf(stderr, " -F force NAT off\n"); fprintf(stderr, " -Y select all hosts/groups\n"); -@@ -2316,17 +2316,14 @@ - dq = (unsigned char *)devs; // point at name list - for (ifa = ifap; ifa; ifa = ifa->ifa_next) { - if (ifa->ifa_addr->sa_family == AF_LINK) { --// FreeBSD doesn't define some of these! --#ifdef IFT_PFLOG - struct if_data *ifd = (struct if_data *) ifa->ifa_data; -- if (ifd->ifi_type == IFT_PFLOG -- || ifd->ifi_type == IFT_PFSYNC -- || ifd->ifi_type == IFT_ENC -- || ifd->ifi_type == IFT_BRIDGE -- || ifd->ifi_type == IFT_OTHER -- || ifd->ifi_type == IFT_GIF) -- continue; --#endif -+ -+ if (ifd->ifi_type == IFT_OTHER -+ || ifd->ifi_type == IFT_GIF -+ || ifd->ifi_type == IFT_LOOP -+ || ifd->ifi_type == IFT_FAITH) -+ continue; -+ - q = dq; // add new name into list - p = ifa->ifa_name; - devnum++;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501021655.t02GtRXw009589>