Source-Changes-HG archive

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

[src/trunk]: src/sys/netinet6 bad semicolon after "if" conditional. sync wit...



details:   https://anonhg.NetBSD.org/src/rev/64cb8479dfed
branches:  trunk
changeset: 503434:64cb8479dfed
user:      itojun <itojun%NetBSD.org@localhost>
date:      Tue Feb 06 01:27:29 2001 +0000

description:
bad semicolon after "if" conditional.  sync with kame

diffstat:

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

diffs (18 lines):

diff -r a580fdda4884 -r 64cb8479dfed sys/netinet6/ip6_output.c
--- a/sys/netinet6/ip6_output.c Tue Feb 06 00:02:25 2001 +0000
+++ b/sys/netinet6/ip6_output.c Tue Feb 06 01:27:29 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ip6_output.c,v 1.29 2001/02/02 15:54:56 itojun Exp $   */
+/*     $NetBSD: ip6_output.c,v 1.30 2001/02/06 01:27:29 itojun Exp $   */
 /*     $KAME: ip6_output.c,v 1.152 2001/02/02 15:36:33 jinmei Exp $    */
 
 /*
@@ -785,7 +785,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