Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/netinet6 Pull up revision 1.30 (requested by itojun):



details:   https://anonhg.NetBSD.org/src/rev/9836b37dbcd0
branches:  netbsd-1-5
changeset: 490682:9836b37dbcd0
user:      he <he%NetBSD.org@localhost>
date:      Mon Feb 26 17:01:56 2001 +0000

description:
Pull up revision 1.30 (requested by itojun):
  Remove a misplaced semicolon after ``if'' conditional.

diffstat:

 sys/netinet6/ip6_output.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 227f1e998982 -r 9836b37dbcd0 sys/netinet6/ip6_output.c
--- a/sys/netinet6/ip6_output.c Mon Feb 26 16:59:50 2001 +0000
+++ b/sys/netinet6/ip6_output.c Mon Feb 26 17:01:56 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ip6_output.c,v 1.23.2.2 2001/02/04 19:22:08 he Exp $   */
+/*     $NetBSD: ip6_output.c,v 1.23.2.3 2001/02/26 17:01:56 he Exp $   */
 /*     $KAME: ip6_output.c,v 1.109 2000/05/31 05:03:09 jinmei Exp $    */
 
 /*
@@ -787,7 +787,7 @@
                 * passed to looutput, and the kernel would hang.
                 * The following last resort would prevent such disaster.
                 */
-               if (origifp == NULL);
+               if (origifp == NULL)
                        origifp = ifp;
        }
        else



Home | Main Index | Thread Index | Old Index