From NetBSD: Fix PR/2095 options MROUTING did not compile.
authorniklas <niklas@openbsd.org>
Mon, 4 Mar 1996 08:21:52 +0000 (08:21 +0000)
committerniklas <niklas@openbsd.org>
Mon, 4 Mar 1996 08:21:52 +0000 (08:21 +0000)
sys/netinet/in_proto.c
sys/netinet/raw_ip.c

index 51dc49a..74a66e4 100644 (file)
@@ -1,5 +1,5 @@
-/*     $OpenBSD: in_proto.c,v 1.2 1996/03/03 22:30:33 niklas Exp $     */
-/*     $NetBSD: in_proto.c,v 1.13 1996/02/13 23:42:09 christos Exp $   */
+/*     $OpenBSD: in_proto.c,v 1.3 1996/03/04 08:21:53 niklas Exp $     */
+/*     $NetBSD: in_proto.c,v 1.14 1996/02/18 18:58:32 christos Exp $   */
 
 /*
  * Copyright (c) 1982, 1986, 1993
@@ -81,7 +81,7 @@
 #endif /* EON */
 
 #ifdef MROUTING
-#include <netinet/mroute.h>
+#include <netinet/ip_mroute.h>
 #endif /* MROUTING */
 
 extern struct domain inetdomain;
index 498d38a..38562c2 100644 (file)
@@ -1,5 +1,5 @@
-/*     $OpenBSD: raw_ip.c,v 1.3 1996/03/03 22:30:43 niklas Exp $       */
-/*     $NetBSD: raw_ip.c,v 1.24 1996/02/13 23:43:29 christos Exp $     */
+/*     $OpenBSD: raw_ip.c,v 1.4 1996/03/04 08:21:52 niklas Exp $       */
+/*     $NetBSD: raw_ip.c,v 1.25 1996/02/18 18:58:33 christos Exp $     */
 
 /*
  * Copyright (c) 1982, 1986, 1988, 1993
@@ -205,6 +205,9 @@ rip_ctloutput(op, so, level, optname, m)
        struct mbuf **m;
 {
        register struct inpcb *inp = sotoinpcb(so);
+#ifdef MROUTING
+       int error;
+#endif
 
        if (level != IPPROTO_IP) {
                if (m != 0 && *m != 0)