Move getvnetflowid() out of #ifndef SMALL to unbreak 'make release'.
authortb <tb@openbsd.org>
Tue, 20 Feb 2018 15:33:16 +0000 (15:33 +0000)
committertb <tb@openbsd.org>
Tue, 20 Feb 2018 15:33:16 +0000 (15:33 +0000)
Diff from jsg, ok millert, benno

sbin/ifconfig/ifconfig.c

index a1a8b78..a91173b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ifconfig.c,v 1.359 2018/02/20 03:45:06 dlg Exp $      */
+/*     $OpenBSD: ifconfig.c,v 1.360 2018/02/20 15:33:16 tb Exp $       */
 /*     $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $      */
 
 /*
@@ -3357,20 +3357,6 @@ delvnetflowid(const char *ignored, int alsoignored)
                warn("SIOCSVNETFLOWID");
 }
 
-void
-getvnetflowid(struct ifencap *ife)
-{
-       if (strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name)) >=
-           sizeof(ifr.ifr_name))
-               errx(1, "vnetflowid: name is too long");
-
-       if (ioctl(s, SIOCGVNETFLOWID, &ifr) == -1)
-               return;
-
-       if (ifr.ifr_vnetid)
-               ife->ife_flags |= IFE_VNETFLOWID;
-}
-
 void
 mpe_status(void)
 {
@@ -3557,6 +3543,20 @@ setmpwcontrolword(const char *value, int d)
 }
 #endif /* SMALL */
 
+void
+getvnetflowid(struct ifencap *ife)
+{
+       if (strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name)) >=
+           sizeof(ifr.ifr_name))
+               errx(1, "vnetflowid: name is too long");
+
+       if (ioctl(s, SIOCGVNETFLOWID, &ifr) == -1)
+               return;
+
+       if (ifr.ifr_vnetid)
+               ife->ife_flags |= IFE_VNETFLOWID;
+}
+
 void
 setvnetid(const char *id, int param)
 {