diff options
| author | Brian Somers <brian@FreeBSD.org> | 1999-11-29 18:54:56 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1999-11-29 18:54:56 +0000 |
| commit | 70600ece872df651323f417c34f3092de92b744e (patch) | |
| tree | 9b900e60e73079b566d6882ea419725ade514122 /usr.sbin | |
| parent | 2389f43fed39ffa695187f289e139efdf4cd2d5e (diff) | |
Notes
Diffstat (limited to 'usr.sbin')
| -rw-r--r-- | usr.sbin/ppp/README.changes | 7 | ||||
| -rw-r--r-- | usr.sbin/ppp/main.c | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/usr.sbin/ppp/README.changes b/usr.sbin/ppp/README.changes index e0c796e453f7..11d83d6dac13 100644 --- a/usr.sbin/ppp/README.changes +++ b/usr.sbin/ppp/README.changes @@ -1,3 +1,5 @@ +$FreeBSD$ + This file summarises changes made to ppp that effect its configuration. @@ -83,13 +85,14 @@ o Ppp now accepts M$CHAP (as well as normal CHAP) by default. If this o The ``set device'' command now expects each device to be specified as an argument rather than concatentating all arguments and splitting based on commas and spaces. -o The ``show modem'' command is depricated and has been changed to +o The ``show modem'' command is deprecated and has been changed to ``show physical''. o The words ``host'' and ``port'' are no longer accepted by the ``set filter'' command. Removing them should yield the same results as before. -o The ``set weight'' command has been depricated. The ``set bandwidth'' +o The ``set weight'' command has been deprecated. The ``set bandwidth'' command should now be used instead. o The ``set autoload'' command syntax and implementation have changed as the old implementation was mis-designed and dysfunctional. o Ppp now waits either the full ``set cd'' time or until carrier is detected before running the login script (whichever comes first). +o The -alias flag has been deprecated. The -nat flag should be used instead. diff --git a/usr.sbin/ppp/main.c b/usr.sbin/ppp/main.c index a108f937a383..54b9ece3e7fa 100644 --- a/usr.sbin/ppp/main.c +++ b/usr.sbin/ppp/main.c @@ -226,8 +226,8 @@ ProcessArgs(int argc, char **argv, struct switches *sw) log_Printf(LogWARN, "%s ignored: NAT is compiled out\n", argv[arg]); fprintf(stderr, "%s ignored: NAT is compiled out\n", argv[arg]); #else - log_Printf(LogWARN, "%s is depricated\n", argv[arg]); - fprintf(stderr, "%s is depricated\n", argv[arg]); + log_Printf(LogWARN, "%s is deprecated\n", argv[arg]); + fprintf(stderr, "%s is deprecated\n", argv[arg]); sw->nat = 1; #endif optc--; /* this option isn't exclusive */ |
