Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Oct 1997 18:04:12 -0700 (PDT)
From:      Brian Somers <brian@FreeBSD.ORG>
To:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG
Subject:   cvs commit: src/usr.sbin/ppp async.h defs.c phase.c timer.h vjcomp.h Makefile alias_cmd.c alias_cmd.h arp.c arp.h async.c auth.c auth.h ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c chat.h command.c command.h defs.h filter.c filter.h fsm.c fsm.h ...
Message-ID:  <199710260104.SAA03064@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
brian       1997/10/25 18:04:10 PDT

  Modified files:
    usr.sbin/ppp         Makefile alias_cmd.c alias_cmd.h arp.c 
                         arp.h async.c auth.c auth.h ccp.c ccp.h 
                         chap.c chap.h chap_ms.c chap_ms.h chat.c 
                         chat.h command.c command.h defs.h 
                         filter.c filter.h fsm.c fsm.h hdlc.c 
                         hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c 
                         lcp.h lcpproto.h loadalias.c loadalias.h 
                         log.c log.h lqr.c lqr.h main.c main.h 
                         mbuf.c mbuf.h modem.c modem.h os.c os.h 
                         pap.c pap.h pathnames.h phase.h pred.c 
                         pred.h route.c route.h server.c server.h 
                         sig.c sig.h slcompress.c slcompress.h 
                         systems.c systems.h timer.c vars.c vars.h 
                         vjcomp.c 
  Added files:
    usr.sbin/ppp         async.h defs.c phase.c timer.h vjcomp.h 
  Removed files:
    usr.sbin/ppp         global.h timeout.h 
  Log:
  Cosmetic (no functional changes):
  o   Add missing $Id$s
  o   Move extern decls from .c -> .h files
  o   Staticize
  o   Remove #includes from .h files
  o   style(9)ify includes
  o   bcopy -> memcpy
      bzero -> memset
      bcmp -> memcmp
      index -> strchr
      rindex -> strrchr
  o   Move timeout.h -> timer.h (making it consistent w/ timer.c)
  o   Add -Wmissing-prototypes
  
  Revision  Changes    Path
  1.28      +5 -5      src/usr.sbin/ppp/Makefile
  1.6       +21 -30    src/usr.sbin/ppp/alias_cmd.c
  1.3       +5 -4      src/usr.sbin/ppp/alias_cmd.h
  1.16      +22 -124   src/usr.sbin/ppp/arp.c
  1.6       +1 -5      src/usr.sbin/ppp/arp.h
  1.12      +22 -9     src/usr.sbin/ppp/async.c
  1.18      +22 -12    src/usr.sbin/ppp/auth.c
  1.9       +7 -13     src/usr.sbin/ppp/auth.h
  1.17      +31 -20    src/usr.sbin/ppp/ccp.c
  1.8       +9 -12     src/usr.sbin/ppp/ccp.h
  1.24      +48 -38    src/usr.sbin/ppp/chap.c
  1.8       +3 -8      src/usr.sbin/ppp/chap.h
  1.2       +17 -12    src/usr.sbin/ppp/chap_ms.c
  1.2       +6 -8      src/usr.sbin/ppp/chap_ms.h
  1.35      +37 -28    src/usr.sbin/ppp/chat.c
  1.8       +5 -6      src/usr.sbin/ppp/chat.h
  1.88      +45 -69    src/usr.sbin/ppp/command.c
  1.8       +9 -2      src/usr.sbin/ppp/command.h
  1.22      +23 -45    src/usr.sbin/ppp/defs.h
  1.16      +31 -25    src/usr.sbin/ppp/filter.c
  1.10      +15 -12    src/usr.sbin/ppp/filter.h
  1.20      +46 -27    src/usr.sbin/ppp/fsm.c
  1.11      +10 -26    src/usr.sbin/ppp/fsm.h
  1.20      +19 -4     src/usr.sbin/ppp/hdlc.c
  1.11      +10 -13    src/usr.sbin/ppp/hdlc.h
  1.26      +30 -15    src/usr.sbin/ppp/ip.c
  1.6       +1 -5      src/usr.sbin/ppp/ip.h
  1.31      +51 -43    src/usr.sbin/ppp/ipcp.c
  1.11      +9 -14     src/usr.sbin/ppp/ipcp.h
  1.40      +43 -81    src/usr.sbin/ppp/lcp.c
  1.9       +4 -6      src/usr.sbin/ppp/lcp.h
  1.9       +9 -14     src/usr.sbin/ppp/lcpproto.h
  1.8       +11 -5     src/usr.sbin/ppp/loadalias.c
  1.3       +16 -13    src/usr.sbin/ppp/loadalias.h
  1.17      +9 -3      src/usr.sbin/ppp/log.c
  1.14      +8 -4      src/usr.sbin/ppp/log.h
  1.19      +11 -1     src/usr.sbin/ppp/lqr.c
  1.8       +1 -6      src/usr.sbin/ppp/lqr.h
  1.85      +48 -42    src/usr.sbin/ppp/main.c
  1.7       +9 -6      src/usr.sbin/ppp/main.h
  1.10      +13 -6     src/usr.sbin/ppp/mbuf.c
  1.7       +12 -17    src/usr.sbin/ppp/mbuf.h
  1.60      +34 -30    src/usr.sbin/ppp/modem.c
  1.10      +4 -10     src/usr.sbin/ppp/modem.h
  1.28      +30 -27    src/usr.sbin/ppp/os.c
  1.9       +7 -11     src/usr.sbin/ppp/os.h
  1.18      +29 -17    src/usr.sbin/ppp/pap.c
  1.4       +3 -5      src/usr.sbin/ppp/pap.h
  1.8       +1 -5      src/usr.sbin/ppp/pathnames.h
  1.8       +2 -8      src/usr.sbin/ppp/phase.h
  1.15      +21 -11    src/usr.sbin/ppp/pred.c
  1.6       +2 -7      src/usr.sbin/ppp/pred.h
  1.20      +19 -17    src/usr.sbin/ppp/route.c
  1.6       +5 -6      src/usr.sbin/ppp/route.h
  1.6       +15 -19    src/usr.sbin/ppp/server.c
  1.3       +5 -8      src/usr.sbin/ppp/server.h
  1.9       +5 -33     src/usr.sbin/ppp/sig.c
  1.10      +3 -33     src/usr.sbin/ppp/sig.h
  1.13      +29 -22    src/usr.sbin/ppp/slcompress.c
  1.9       +8 -19     src/usr.sbin/ppp/slcompress.h
  1.17      +20 -8     src/usr.sbin/ppp/systems.c
  1.7       +5 -5      src/usr.sbin/ppp/systems.h
  1.22      +16 -8     src/usr.sbin/ppp/timer.c
  1.31      +20 -2     src/usr.sbin/ppp/vars.c
  1.31      +49 -43    src/usr.sbin/ppp/vars.h
  1.11      +14 -4     src/usr.sbin/ppp/vjcomp.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199710260104.SAA03064>