Source-Changes-HG archive

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

[src/trunk]: src/sys/net Fix an obvious typo: scf -> sc. Discovered while co...



details:   https://anonhg.NetBSD.org/src/rev/a30c883a60d3
branches:  trunk
changeset: 571644:a30c883a60d3
user:      he <he%NetBSD.org@localhost>
date:      Sun Dec 05 13:32:03 2004 +0000

description:
Fix an obvious typo: scf -> sc.  Discovered while compiling for x68k.

diffstat:

 sys/net/if_ppp.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d868926799e1 -r a30c883a60d3 sys/net/if_ppp.c
--- a/sys/net/if_ppp.c  Sun Dec 05 13:28:54 2004 +0000
+++ b/sys/net/if_ppp.c  Sun Dec 05 13:32:03 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ppp.c,v 1.92 2004/12/05 05:42:19 christos Exp $     */
+/*     $NetBSD: if_ppp.c,v 1.93 2004/12/05 13:32:03 he Exp $   */
 /*     Id: if_ppp.c,v 1.6 1997/03/04 03:33:00 paulus Exp       */
 
 /*
@@ -102,7 +102,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ppp.c,v 1.92 2004/12/05 05:42:19 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ppp.c,v 1.93 2004/12/05 13:32:03 he Exp $");
 
 #include "ppp.h"
 
@@ -1286,7 +1286,7 @@
 {
        struct ppp_softc *sc;
 
-       for (sc = LIST_FIRST(&ppp_softc_list); scf != NULL; 
+       for (sc = LIST_FIRST(&ppp_softc_list); sc != NULL; 
            sc = LIST_NEXT(sc, sc_iflist))
                pppintr(sc);
 }



Home | Main Index | Thread Index | Old Index